From: Simon Hausmann Date: Wed, 7 Feb 2007 22:51:51 +0000 (+0100) Subject: fix calculation of newest revision for initial import X-Git-Url: http://crossforests.com/gitweb?a=commitdiff_plain;h=2c3e57d5f5ef067f1c61ce21efee294dd5d335bd;p=python%2Ffast-export.git fix calculation of newest revision for initial import --- diff --git a/p4-fast-export.py b/p4-fast-export.py index 16e3d8d..36381fb 100755 --- a/p4-fast-export.py +++ b/p4-fast-export.py @@ -183,7 +183,7 @@ if len(revision) > 0: fileCnt = 0 for info in p4CmdList("files %s...%s" % (prefix, revision)): - change = info["change"] + change = int(info["change"]) if change > newestRevision: newestRevision = change