From: Vo Minh Thu Date: Fri, 16 Dec 2011 16:39:38 +0000 (+0100) Subject: [FIX] setup.py: missing comma in the module list. X-Git-Tag: 6.1.0-rc1-addons~585 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=3183c975af94063f06559c8c2afe6c65da191b8d;p=odoo%2Fodoo.git [FIX] setup.py: missing comma in the module list. bzr revid: vmt@openerp.com-20111216163938-6hy1fmapfnp2v6r3 --- diff --git a/setup.py b/setup.py index 7f2d131..094ee6f 100755 --- a/setup.py +++ b/setup.py @@ -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"], } }