diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-09 16:25:54 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-09 16:25:54 +0000 |
commit | f0fd39e276b547cfa3578da2de8c034bf547c6ba (patch) | |
tree | 9170e07f98e063ea5a5cc0d51ddada35d38a88e6 /setuptools/command/egg_info.py | |
parent | 755c42c4a62b27779c9b935ff76a874da995bbce (diff) | |
download | external_python_setuptools-f0fd39e276b547cfa3578da2de8c034bf547c6ba.tar.gz external_python_setuptools-f0fd39e276b547cfa3578da2de8c034bf547c6ba.tar.bz2 external_python_setuptools-f0fd39e276b547cfa3578da2de8c034bf547c6ba.zip |
Changed --tag-svn-revision to include an "r" in front of the revision
number for better readability.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041106
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 6fffbe24..907e47fb 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -127,7 +127,7 @@ class egg_info(Command): version+=self.tag_build if self.tag_svn_revision and os.path.exists('.svn'): - version += '-%s' % self.get_svn_revision() + version += '-r%s' % self.get_svn_revision() if self.tag_date: import time |