From cd9ad405914baf39fceed0264540d895ed91c3c5 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 18 Aug 2004 18:45:52 +0000 Subject: [PATCH] Let's reorder this, in case it matters sometime. --- plugins/URL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/URL.py b/plugins/URL.py index 49bd78e27..a4cdf2590 100644 --- a/plugins/URL.py +++ b/plugins/URL.py @@ -166,7 +166,7 @@ class URLDB(object): class URL(callbacks.PrivmsgCommandAndRegexp): priority = 100 # lower than 99, the normal priority. - regexps = ['tinyurlSnarfer', 'titleSnarfer'] + regexps = ['titleSnarfer', 'tinyurlSnarfer'] _titleRe = re.compile('(.*?)', re.I | re.S) def getDb(self, channel): return URLDB(channel, self.log)