From 44158dfc3c91b9b01e360457c492f38c1ebaa582 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 26 Apr 2007 16:35:42 +0000 Subject: [PATCH] Fix bug in py2exe setup script --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d7b07c33a2..d9f240d52b 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ if sys.argv[1] == 'py2exe': 'packages' : ['PIL'], 'excludes' : excludes}} py2exe_options = {'console' : console, 'windows' : windows, - 'options' : options, 'excludes' : excludes} + 'options' : options} except ImportError: print >>sys.stderr, 'Must be in Windows to run py2exe' sys.exit(1)