From 3183c975af94063f06559c8c2afe6c65da191b8d Mon Sep 17 00:00:00 2001 From: Vo Minh Thu Date: Fri, 16 Dec 2011 17:39:38 +0100 Subject: [PATCH] [FIX] setup.py: missing comma in the module list. bzr revid: vmt@openerp.com-20111216163938-6hy1fmapfnp2v6r3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"], } } -- 1.7.10.4