Commit b7516405 authored by PJ Eby's avatar PJ Eby

Handle distributions with ' ' in their names

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041020
parent 70ade027
......@@ -53,7 +53,7 @@ class bdist_egg(Command):
def finalize_options (self):
self.egg_name = self.distribution.get_name().replace('-','_')
self.egg_name = self.distribution.get_name().replace('-','_').replace(' ','_')
self.egg_version = self.distribution.get_version().replace('-','_')
try:
list(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment