rollback florent's not-proven-to-be-useful fix tls-sprint
authorsylvain.thenault@logilab.fr
Fri, 17 Apr 2009 13:21:05 +0200
branchtls-sprint
changeset 1397 6cbc7bc8ea6d
parent 1396 daaebf6b9922
child 1398 5fe84a5f7035
rollback florent's not-proven-to-be-useful fix
utils.py
--- a/utils.py	Fri Apr 17 13:17:21 2009 +0200
+++ b/utils.py	Fri Apr 17 13:21:05 2009 +0200
@@ -9,7 +9,7 @@
 import locale
 from md5 import md5
 from datetime import datetime, timedelta, date
-from time import time, strftime
+from time import time
 from random import randint, seed
     
 # initialize random seed from current time
@@ -53,7 +53,7 @@
     """
     # date format may depend on the locale
     encoding = locale.getpreferredencoding(do_setlocale=False) or 'UTF-8'
-    return unicode(strftime(str(fmt), date.timetuple()), encoding)
+    return unicode(date.strftime(str(fmt)), encoding)
 
 def make_uid(key):
     """forge a unique identifier"""