diff options
author | Pete Wyckoff <pw@padd.com> | 2012-11-23 23:35:38 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-26 20:01:04 +0100 |
commit | a4e9054cfbd869f96720e5ba4ce4d3a50e17141e (patch) | |
tree | 530392533763789e53a0119879e07635fa72f291 /git-p4.py | |
parent | git p4 test: display unresolvable host error (diff) | |
download | git-a4e9054cfbd869f96720e5ba4ce4d3a50e17141e.tar.xz git-a4e9054cfbd869f96720e5ba4ce4d3a50e17141e.zip |
git p4: fix labelDetails typo in exception
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-p4.py')
-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)) |