diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-19 08:47:43 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-19 08:47:43 -0500 |
commit | e2b6f95a403f2152dacba8229ea8b91aecc3328e (patch) | |
tree | cf0386cb0376556644d979b08ea60095887cccd4 | |
parent | 5a3dbe5d5b8cb07a292b8fee2cd83fbc1bcbd16f (diff) | |
download | python-setuptools-git-0.7.4.tar.gz |
Reference parsed svn version variable instead of the whole of the data. Fixes #200.7.4
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 77ab44aa..d736ca2c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +0.7.4 +----- + +* Issue #20: Fix comparison of parsed SVN version on Python 3. + +----- 0.7.3 ----- diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 5863d2d4..b283b28a 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -231,7 +231,7 @@ class egg_info(Command): else: try: svnver = int(data.splitlines()[0]) except: svnver=-1 - if data<8: + if svnver<8: log.warn("unrecognized .svn/entries format; skipping %s", base) dirs[:] = [] continue |