Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 3886:5c4a039aa465
.send_message: fix translation for the "file not attached" message
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Wed, 05 Sep 2007 06:13:56 +0000 |
| parents | 46ef2a6fd79d |
| children | f762fa13cd8d |
line wrap: on
line diff
--- a/roundup/roundupdb.py Mon Sep 03 20:33:56 2007 +0000 +++ b/roundup/roundupdb.py Wed Sep 05 06:13:56 2007 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.130 2007-09-03 17:14:08 jpend Exp $ +# $Id: roundupdb.py,v 1.131 2007-09-05 06:13:56 a1s Exp $ """Extending hyperdb with types specific to issue-tracking. """ @@ -343,8 +343,8 @@ base = self.db.config.TRACKER_WEB link = "".join((base, files.classname, fileid)) filename = files.get(fileid, 'name') - m.append(_("File '%(filename)s' not attached - you can " - "download it from %(link)s." % locals())) + m.append(_("File '%(filename)s' not attached - " + "you can download it from %(link)s.") % locals()) # add the change note if note:
