r53602 - tracker/roundup-src/roundup/roundupdb.py
Author: erik.forsberg Date: Tue Jan 30 07:59:36 2007 New Revision: 53602 Modified: tracker/roundup-src/roundup/roundupdb.py Log: Removed stray '%' character, causing traceback when creating new issues. Modified: tracker/roundup-src/roundup/roundupdb.py ============================================================================== --- tracker/roundup-src/roundup/roundupdb.py (original) +++ tracker/roundup-src/roundup/roundupdb.py Tue Jan 30 07:59:36 2007 @@ -305,7 +305,7 @@ # add author information if authid: if len(self.get(nodeid,'messages')) == 1: - m.append(_("New submission from %(authname)s%:") + m.append(_("New submission from %(authname)s:") % locals()) else: m.append(_("%(authname)s added the comment:")
participants (1)
-
erik.forsberg