1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-12 21:57:44 +02:00

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>
This commit is contained in:
John Keeping 2013-01-20 13:15:35 +00:00 committed by Junio C Hamano
parent 62c814b6b6
commit cadbf5c7ed

View File

@ -14,7 +14,7 @@
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]