diff --git a/borg/helpers.py b/borg/helpers.py index 8e76c3621..7f20a102e 100644 --- a/borg/helpers.py +++ b/borg/helpers.py @@ -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)