diff options
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index a3aeb775..25b711a4 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -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( |