aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/egg_info.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-xsetuptools/command/egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index b35e1956..0223becb 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -124,7 +124,7 @@ class egg_info(Command):
def tagged_version(self):
version = self.distribution.get_version()
if self.tag_build:
- version+='-'+self.tag_build
+ version+=self.tag_build
if self.tag_svn_revision and os.path.exists('.svn'):
version += '-%s' % self.get_svn_revision()