# HG changeset patch # User Marcin Kuzminski # Date 1370360566 -7200 # Node ID ff78716ab3fa700fd9298eb3e37d8f2072a25ac2 # Parent 1a382ba6ddafee84a930943ae47663bd9004689f removed bad translation string diff -r 1a382ba6ddaf -r ff78716ab3fa rhodecode/lib/helpers.py --- 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 ""