[Python-checkins] hooks: Fix line.

georg.brandl python-checkins at python.org
Tue Mar 1 07:19:31 CET 2011


http://hg.python.org/hooks/rev/95b6d01e8e84
changeset:   41:95b6d01e8e84
tag:         tip
user:        Georg Brandl <georg at python.org>
date:        Tue Mar 01 07:18:29 2011 +0100
summary:
  Fix line.

files:
  mail.py

diff --git a/mail.py b/mail.py
--- a/mail.py
+++ b/mail.py
@@ -39,7 +39,7 @@
     #body += ['%s pushed %s to %s:' % (user, str(ctx), path), '']
     body += [CSET_URL % (path, ctx)]
     body += [line for line in log.splitlines()[:-2]
-             if line != 'tag:         tip\n']
+             if line != 'tag:         tip']
     body += ['summary:\n  ' + ctx.description(), '']
     body += ['files:\n  ' + '\n  '.join(ctx.files()), '']
 

-- 
Repository URL: http://hg.python.org/hooks


More information about the Python-checkins mailing list