Skip to content

Commit 6ced194

Browse files
author
Alexander Smishlajev
committed
.send_message: fix translation for the "file not attached" message
1 parent f05fc36 commit 6ced194

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roundup/roundupdb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: roundupdb.py,v 1.130 2007-09-03 17:14:08 jpend Exp $
19+
# $Id: roundupdb.py,v 1.131 2007-09-05 06:13:56 a1s Exp $
2020

2121
"""Extending hyperdb with types specific to issue-tracking.
2222
"""
@@ -343,8 +343,8 @@ def send_message(self, nodeid, msgid, note, sendto, from_address=None,
343343
base = self.db.config.TRACKER_WEB
344344
link = "".join((base, files.classname, fileid))
345345
filename = files.get(fileid, 'name')
346-
m.append(_("File '%(filename)s' not attached - you can "
347-
"download it from %(link)s." % locals()))
346+
m.append(_("File '%(filename)s' not attached - "
347+
"you can download it from %(link)s.") % locals())
348348

349349
# add the change note
350350
if note:

0 commit comments

Comments
 (0)