From 6a26dce0b1cc8f126842e549338849d44b75ba55 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 25 Jan 2009 20:51:13 +0000 Subject: [PATCH] Fixed bug in URL formatting in Headline News svn: r11725 --- src/plugins/gramplet/DefaultGramplets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/gramplet/DefaultGramplets.py b/src/plugins/gramplet/DefaultGramplets.py index cfc8dbd87..3bb1126b6 100644 --- a/src/plugins/gramplet/DefaultGramplets.py +++ b/src/plugins/gramplet/DefaultGramplets.py @@ -989,7 +989,7 @@ class HeadlineNewsGramplet(Gramplet): matches = pattern.findall(text) for (g1, g2) in matches: text = text.replace("[[%s|%s]]" % (g1, g2), - ("""%s""" % + ("""%s""" % (self.wiki(g1), self.nice_title(g2)))) ### Internal wiki URL: pattern = re.compile('\[\[(.*?)\]\]')