[Buildbot-commits] buildbot/buildbot/status mail.py,1.24,1.25
Brian Warner
warner at users.sourceforge.net
Sat Jun 3 18:23:06 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/status
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32174/buildbot/status
Modified Files:
mail.py
Log Message:
[project @ MailNotifier: don't double-escape the build URL, fixes SF#1452801]
Original author: warner at lothar.com
Date: 2006-06-03 18:20:34
Index: mail.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/mail.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- mail.py 17 Apr 2006 19:22:34 -0000 1.24
+++ mail.py 3 Jun 2006 18:23:04 -0000 1.25
@@ -233,8 +233,7 @@
text += "The Buildbot has detected a new failure of %s.\n" % name
buildurl = self.status.getURLForThing(build)
if buildurl:
- text += ("Full details are available at:\n %s\n" %
- urllib.quote(buildurl, '/:'))
+ text += "Full details are available at:\n %s\n" % buildurl
text += "\n"
url = self.status.getBuildbotURL()
More information about the Commits
mailing list