From: rachele-collin <63007243+rachele-collin@users.noreply.github.com> Date: Wed, 1 Apr 2020 16:05:11 +0000 (+0200) Subject: Parse string date times indepentent of time zone X-Git-Tag: v2.10.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d6803a2700df9228f0b6a9614ec7a44a3ad27bb;p=thirdparty%2Fbabel.git Parse string date times indepentent of time zone Parsing a date time string (such as for ``POT-Creation-Date`` or ``PO-Revision-Date``) as UTC time, in particular independent of the local time zone. Closes: #700 --- diff --git a/babel/messages/catalog.py b/babel/messages/catalog.py index e516fd8c..342f7377 100644 --- a/babel/messages/catalog.py +++ b/babel/messages/catalog.py @@ -10,7 +10,6 @@ """ import re -import time from cgi import parse_header from collections import OrderedDict @@ -43,9 +42,7 @@ PYTHON_FORMAT = re.compile(r''' def _parse_datetime_header(value): match = re.match(r'^(?P.*?)(?P[+-]\d{4})?$', value) - tt = time.strptime(match.group('datetime'), '%Y-%m-%d %H:%M') - ts = time.mktime(tt) - dt = datetime.fromtimestamp(ts) + dt = datetime.strptime(match.group('datetime'), '%Y-%m-%d %H:%M') # Separate the offset into a sign component, hours, and # minutes tzoffset = match.group('tzoffset')