comparison setup.py @ 1548:18f3224da392

fix bug in setup.py introduced in r1508. The 'console' argument is expected to be a list of strings, but was changed to just a string.
author Will <will@glozer.net>
date Wed, 16 Nov 2005 20:53:16 +0100
parents b254243b7159
children dd5085897010
comparison
equal deleted inserted replaced
1547:4dea10839201 1548:18f3224da392
73 mercurial.version.remember_version(version) 73 mercurial.version.remember_version(version)
74 cmdclass = {'install_data': install_package_data} 74 cmdclass = {'install_data': install_package_data}
75 py2exe_opts = {} 75 py2exe_opts = {}
76 if py2exe_for_demandload is not None: 76 if py2exe_for_demandload is not None:
77 cmdclass['py2exe'] = py2exe_for_demandload 77 cmdclass['py2exe'] = py2exe_for_demandload
78 py2exe_opts['console'] = 'hg' 78 py2exe_opts['console'] = ['hg']
79 setup(name='mercurial', 79 setup(name='mercurial',
80 version=mercurial.version.get_version(), 80 version=mercurial.version.get_version(),
81 author='Matt Mackall', 81 author='Matt Mackall',
82 author_email='mpm@selenic.com', 82 author_email='mpm@selenic.com',
83 url='http://selenic.com/mercurial', 83 url='http://selenic.com/mercurial',