git p4: fix labelDetails typo in exception

Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Pete Wyckoff 2012-11-23 17:35:38 -05:00 committed by Junio C Hamano
parent e6777fde8d
commit a4e9054cfb
1 changed files with 1 additions and 1 deletions

View File

@ -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))