mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 00:37:56 +00:00
commit
267347ad3f
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ def to_localtime(ts):
|
|||
|
||||
def parse_timestamp(timestamp):
|
||||
"""Parse a ISO 8601 timestamp string"""
|
||||
if '.' in timestamp: # microseconds might not be pressent
|
||||
if '.' in timestamp: # microseconds might not be present
|
||||
return datetime.strptime(timestamp, '%Y-%m-%dT%H:%M:%S.%f').replace(tzinfo=timezone.utc)
|
||||
else:
|
||||
return datetime.strptime(timestamp, '%Y-%m-%dT%H:%M:%S').replace(tzinfo=timezone.utc)
|
||||
|
|
Loading…
Reference in a new issue