Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2010-04-20 17:26:54 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2010-04-20 17:26:54 (GMT)
commitf77243d6cf9f71ba92a3ad574e7b5866c58bbda7 (patch)
tree3e8a5b42be7e5c990f3891911f0f577df876ccb3
parent7e0db27681e02da2769534de19994887b8202e5b (diff)
i18n of dates in record-activity #1954
-rw-r--r--model.py1
-rw-r--r--utils.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/model.py b/model.py
index 2126dc4..b7f592b 100644
--- a/model.py
+++ b/model.py
@@ -34,7 +34,6 @@ pygtk.require('2.0')
import gc
import math
import time
-from time import strftime
import gobject
import operator
diff --git a/utils.py b/utils.py
index c98c831..9848d86 100644
--- a/utils.py
+++ b/utils.py
@@ -78,7 +78,7 @@ def scaleSvgToDim( handle, dim ):
def getDateString( when ):
- return strftime( "%a, %b %d, %I:%M:%S %p", time.localtime(when) )
+ return strftime( "%c", time.localtime(when) )
def grayScalePixBuf2( pb, copy ):