From: Pete Wyckoff Date: Fri, 23 Nov 2012 22:35:38 +0000 (-0500) Subject: git p4: fix labelDetails typo in exception X-Git-Tag: v1.8.1-rc0~3^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4e9054cfbd869f96720e5ba4ce4d3a50e17141e;p=git git p4: fix labelDetails typo in exception Signed-off-by: Pete Wyckoff Signed-off-by: Junio C Hamano --- diff --git a/git-p4.py b/git-p4.py index cb1ec8d66d..9712082a4f 100755 --- a/git-p4.py +++ b/git-p4.py @@ -2406,7 +2406,7 @@ class P4Sync(Command, P4UserMap): try: tmwhen = time.strptime(labelDetails['Update'], "%Y/%m/%d %H:%M:%S") except ValueError: - print "Could not convert label time %s" % labelDetail['Update'] + print "Could not convert label time %s" % labelDetails['Update'] tmwhen = 1 when = int(time.mktime(tmwhen))