# HG changeset patch # User Marcin Kuzminski # Date 2013-06-04 15:42:46 # Node ID ff78716ab3fa700fd9298eb3e37d8f2072a25ac2 # Parent 1a382ba6ddafee84a930943ae47663bd9004689f removed bad translation string diff --git a/rhodecode/lib/helpers.py b/rhodecode/lib/helpers.py --- a/rhodecode/lib/helpers.py +++ b/rhodecode/lib/helpers.py @@ -425,7 +425,7 @@ def show_id(cs): 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 ""