fix typo in timestamp format

introduced in feb031d587
This commit is contained in:
Rossen Georgiev 2015-01-25 23:58:52 +00:00
parent 5c72b0a847
commit 3b912d6d68
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ def _parse_timestamp(body, packet_type=''):
try:
# zulu hhmmss format
if form == 'h':
timestamp = "%d%02d02d%s" % (utc.year, utc.month, utc.day, ts)
timestamp = "%d%02d%02d%s" % (utc.year, utc.month, utc.day, ts)
# zulu ddhhmm format
# '/' local ddhhmm format
elif form in 'z/':