From d06418633c9970891c091d4c3eb3450d5843ff4a Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 6 Dec 2003 13:26:00 +0000 Subject: [PATCH] Changed \x02...\x0F to an ircutils.bold. --- plugins/Google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Google.py b/plugins/Google.py index 72d5c37d9..cf334c94d 100644 --- a/plugins/Google.py +++ b/plugins/Google.py @@ -159,7 +159,7 @@ class Google(callbacks.PrivmsgCommandAndRegexp, configurable.Mixin): title = utils.htmlToText(result.title.encode('utf-8')) url = result.URL if title: - results.append('\x02%s\x0F: <%s>' % (title, url)) + results.append('%s: <%s>' % (ircutils.bold(title), url)) else: results.append(url) if not results: