summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-06-19 08:47:43 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-06-19 08:47:43 -0500
commite2b6f95a403f2152dacba8229ea8b91aecc3328e (patch)
treecf0386cb0376556644d979b08ea60095887cccd4
parent5a3dbe5d5b8cb07a292b8fee2cd83fbc1bcbd16f (diff)
downloadpython-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.txt6
-rwxr-xr-xsetuptools/command/egg_info.py2
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