[Python-checkins] r53436 - tracker/roundup-src/roundup/roundupdb.py

paul.dubois python-checkins at python.org
Sun Jan 14 18:44:40 CET 2007


Author: paul.dubois
Date: Sun Jan 14 18:44:40 2007
New Revision: 53436

Modified:
   tracker/roundup-src/roundup/roundupdb.py
Log:
FIx for issue 44, email addresses showing.
Involves patch to runtime.


Modified: tracker/roundup-src/roundup/roundupdb.py
==============================================================================
--- tracker/roundup-src/roundup/roundupdb.py	(original)
+++ tracker/roundup-src/roundup/roundupdb.py	Sun Jan 14 18:44:40 2007
@@ -305,10 +305,10 @@
         # add author information
         if authid:
             if len(self.get(nodeid,'messages')) == 1:
-                m.append(_("New submission from %(authname)s%(authaddr)s:")
+                m.append(_("New submission from %(authname)s%:")
                     % locals())
             else:
-                m.append(_("%(authname)s%(authaddr)s added the comment:")
+                m.append(_("%(authname)s added the comment:")
                     % locals())
         else:
             m.append(_("System message:"))


More information about the Python-checkins mailing list