diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-10-29 16:55:46 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-10-29 16:55:46 +0200 |
commit | d608ccbd6d8d1d3dbbe8660d22b6a329df71da63 (patch) | |
tree | eb2de2b45442953548a9d55ab354572d0e7fdc57 | |
parent | 0451127ff8a1b96772b58ff9e246621d0df4c99e (diff) | |
download | poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.tar.gz poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.tar.bz2 poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.tar.xz poezio-d608ccbd6d8d1d3dbbe8660d22b6a329df71da63.zip |
Remove the information() call in the link plugin
-rw-r--r-- | plugins/link.py | 1 |
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 |