[FIX] setup.py: missing comma in the module list.

bzr revid: vmt@openerp.com-20111216163938-6hy1fmapfnp2v6r3
This commit is contained in:
Vo Minh Thu 2011-12-16 17:39:38 +01:00
parent aabf2664f9
commit 3183c975af
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def py2exe_options():
"skip_archive": 1,
"optimize": 2,
"dist_dir": 'dist',
"packages": [ "DAV", "HTMLParser", "PIL", "asynchat", "asyncore", "commands", "dateutil", "decimal", "email", "encodings", "imaplib", "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify", "mako", "openerp", "poplib", "pychart", "pydot", "pyparsing", "reportlab", "select", "simplejson", "smtplib", "uuid", "vatnumber" "vobject", "xml", "xml", "xml.dom", "xml.xpath", "yaml", ],
"packages": [ "DAV", "HTMLParser", "PIL", "asynchat", "asyncore", "commands", "dateutil", "decimal", "email", "encodings", "imaplib", "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify", "mako", "openerp", "poplib", "pychart", "pydot", "pyparsing", "reportlab", "select", "simplejson", "smtplib", "uuid", "vatnumber", "vobject", "xml", "xml", "xml.dom", "xml.xpath", "yaml", ],
"excludes" : ["Tkconstants","Tkinter","tcl"],
}
}