##// END OF EJS Templates
setup: drop use of set literal so parsable on Python 2.6...
Yuya Nishihara -
r33590:a0bfcd08 stable
parent child Browse files
Show More
@@ -576,7 +576,7 b' class hginstall(install):'
576 # Screen out egg related commands to prevent egg generation. But allow
576 # Screen out egg related commands to prevent egg generation. But allow
577 # mercurial.egg-info generation, since that is part of modern
577 # mercurial.egg-info generation, since that is part of modern
578 # packaging.
578 # packaging.
579 excl = {'bdist_egg'}
579 excl = set(['bdist_egg'])
580 return filter(lambda x: x not in excl, install.get_sub_commands(self))
580 return filter(lambda x: x not in excl, install.get_sub_commands(self))
581
581
582 class hginstalllib(install_lib):
582 class hginstalllib(install_lib):
General Comments 0
You need to be logged in to leave comments. Login now