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('\[\[(.*?)\]\]')