summaryrefslogtreecommitdiff
path: root/plugins/link.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-10-29 16:55:46 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-10-29 16:55:46 +0200
commitd608ccbd6d8d1d3dbbe8660d22b6a329df71da63 (patch)
treeeb2de2b45442953548a9d55ab354572d0e7fdc57 /plugins/link.py
parent0451127ff8a1b96772b58ff9e246621d0df4c99e (diff)
downloadpoezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.tar.gz
poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.tar.bz2
poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.tar.xz
poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.zip
Remove the information() call in the link plugin
Diffstat (limited to 'plugins/link.py')
-rw-r--r--plugins/link.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/link.py b/plugins/link.py
index 0cd1a0f1..34f0a441 100644
--- a/plugins/link.py
+++ b/plugins/link.py
@@ -21,7 +21,6 @@ class Plugin(BasePlugin):
for message in messages[::-1]:
match = url_pattern.search(clean_text(message.txt))
if match:
- self.core.information('[%s]' % (match.groups(),))
for url in list(match.groups())[::-1]:
if nb == 1:
return url