diff options
author | John Keeping <john@keeping.me.uk> | 2013-01-20 13:15:35 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-24 19:32:35 -0800 |
commit | cadbf5c7ed4ea60d2b776346586b224e774dca4b (patch) | |
tree | 071af39ed572f3d26506d81f5f47ac5ee9bd9bd2 /contrib/svn-fe | |
parent | 62c814b6b60f5b5605e34c9806d874fe1088d416 (diff) | |
download | git-cadbf5c7ed4ea60d2b776346586b224e774dca4b.tar.gz git-cadbf5c7ed4ea60d2b776346586b224e774dca4b.tar.xz |
svn-fe: allow svnrdump_sim.py to run with Python 3
The changes to allow this script to run with Python 3 are minimal and do
not affect its functionality on the versions of Python 2 that are
already supported (2.4 onwards).
Signed-off-by: John Keeping <john@keeping.me.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/svn-fe')
-rwxr-xr-x | contrib/svn-fe/svnrdump_sim.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/svn-fe/svnrdump_sim.py b/contrib/svn-fe/svnrdump_sim.py index 17cf6f961..4e78a1c3c 100755 --- a/contrib/svn-fe/svnrdump_sim.py +++ b/contrib/svn-fe/svnrdump_sim.py @@ -14,7 +14,7 @@ if sys.hexversion < 0x02040000: def getrevlimit(): var = 'SVNRMAX' - if os.environ.has_key(var): + if var in os.environ: return os.environ[var] return None @@ -44,7 +44,7 @@ def writedump(url, lower, upper): if __name__ == "__main__": if not (len(sys.argv) in (3, 4, 5)): - print "usage: %s dump URL -rLOWER:UPPER" + print("usage: %s dump URL -rLOWER:UPPER") sys.exit(1) if not sys.argv[1] == 'dump': raise NotImplementedError('only "dump" is suppported.') url = sys.argv[2] |