diff options
author | Pete Wyckoff <pw@padd.com> | 2012-11-23 17:35:38 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-26 11:01:04 -0800 |
commit | a4e9054cfbd869f96720e5ba4ce4d3a50e17141e (patch) | |
tree | 530392533763789e53a0119879e07635fa72f291 | |
parent | git p4 test: display unresolvable host error (diff) | |
download | tgif-a4e9054cfbd869f96720e5ba4ce4d3a50e17141e.tar.xz |
git p4: fix labelDetails typo in exception
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | git-p4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |