diff options
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-x | setuptools/command/egg_info.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 9ba719fe..de43bf0c 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -76,8 +76,7 @@ class egg_info(Command): "%s==%s" if isinstance(parsed_version, Version) else "%s===%s" ) list( - parse_requirements(spec % (self.egg_name, - self.egg_version)) + parse_requirements(spec % (self.egg_name, self.egg_version)) ) except ValueError: raise distutils.errors.DistutilsOptionError( |