From 5adb1df7290b168081de0559c2da37d4c878c5a4 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 27 Oct 2009 22:54:56 +0000 Subject: Use calendar.timegm instead of time.mktime, for correct timezone handling. (trunk r14728) svn path=/main/branches/2.1.7/; revision=14736 --- bin/repoman | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/repoman b/bin/repoman index 063a778f8..f6fb55b31 100755 --- a/bin/repoman +++ b/bin/repoman @@ -9,6 +9,7 @@ from __future__ import print_function +import calendar import codecs try: from subprocess import getstatusoutput as subprocess_getstatusoutput @@ -824,7 +825,7 @@ def fetch_metadata_dtd(): elif last_modified is not None: last_modified = parsedate(last_modified) if last_modified is not None: - last_modified = time.mktime(last_modified) + last_modified = calendar.timegm(last_modified) metadata_dtd_tmp = "%s.%s" % (metadata_dtd, os.getpid()) try: -- cgit v1.2.3-1-g7c22