From f77243d6cf9f71ba92a3ad574e7b5866c58bbda7 Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Tue, 20 Apr 2010 17:26:54 +0000 Subject: i18n of dates in record-activity #1954 --- 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 ): -- cgit v0.9.1