Mercurial > hg
changeset 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 | 4dea10839201 |
children | fbe4bbd847e5 |
files | setup.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Tue Nov 15 20:35:10 2005 +0100 +++ b/setup.py Wed Nov 16 20:53:16 2005 +0100 @@ -75,7 +75,7 @@ py2exe_opts = {} if py2exe_for_demandload is not None: cmdclass['py2exe'] = py2exe_for_demandload - py2exe_opts['console'] = 'hg' + py2exe_opts['console'] = ['hg'] setup(name='mercurial', version=mercurial.version.get_version(), author='Matt Mackall',