changeset 3947:ff78716ab3fa beta

removed bad translation string
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 04 Jun 2013 17:42:46 +0200
parents 1a382ba6ddaf
children d56f8619c280
files rhodecode/lib/helpers.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/lib/helpers.py	Tue Jun 04 15:42:07 2013 +0200
+++ b/rhodecode/lib/helpers.py	Tue Jun 04 17:42:46 2013 +0200
@@ -425,7 +425,7 @@
 
 def fmt_date(date):
     if date:
-        _fmt = _(u"%a, %d %b %Y %H:%M:%S").encode('utf8')
+        _fmt = u"%a, %d %b %Y %H:%M:%S".encode('utf8')
         return date.strftime(_fmt).decode('utf8')
 
     return ""