diff --git a/jrnl/Journal.py b/jrnl/Journal.py index 9a7767e8..3d8eb479 100644 --- a/jrnl/Journal.py +++ b/jrnl/Journal.py @@ -315,7 +315,7 @@ class DayOne(Journal): dict_entry = plistlib.readPlist(plist_entry) try: timezone = pytz.timezone(dict_entry['Time Zone']) - except pytz.exceptions.UnknownTimeZoneError: + except (KeyError, pytz.exceptions.UnknownTimeZoneError): timezone = pytz.timezone(util.get_local_timezone()) date = dict_entry['Creation Date'] date = date + timezone.utcoffset(date)