From d37f302a0e96ec946ed8b78d34732d53dfa1a69a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 21 Mar 2011 22:24:36 -0600 Subject: [PATCH] ... --- src/calibre/trac/bzr_commit_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/trac/bzr_commit_plugin.py b/src/calibre/trac/bzr_commit_plugin.py index c70e8db703..7e5a1367cb 100644 --- a/src/calibre/trac/bzr_commit_plugin.py +++ b/src/calibre/trac/bzr_commit_plugin.py @@ -60,7 +60,7 @@ class cmd_commit(_cmd_commit): def close_bug(self, bug, action): print 'Closing bug #%s'% bug #nick = config.get_nickname() - suffix = ('The fix will be in the next release.' + suffix = ('The fix will be in the next release. ' 'calibre is usually released every Friday.') action = action+'ed' msg = '%s in branch %s. %s'%(action, 'lp:calibre', suffix) @@ -72,7 +72,7 @@ class cmd_commit(_cmd_commit): sendmail = importlib.import_module(SENDMAIL[1]) to = bug+'@bugs.launchpad.net' - sendmail.sendmail(msg, to, 'Re: calibre bug '+bug) + sendmail.sendmail(msg, to, 'Fixed in lp:calibre') bzrlib.commands.register_command(cmd_commit)