From 2e70511ad05357d703568e889c69ec475b2fe7d9 Mon Sep 17 00:00:00 2001 From: Vincent A Date: Thu, 20 Feb 2014 14:46:48 +0100 Subject: [PATCH] lutim: a wrong link to the paste was used --- modules/lutim/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lutim/pages.py b/modules/lutim/pages.py index 66938ce3..9a7a97fd 100644 --- a/modules/lutim/pages.py +++ b/modules/lutim/pages.py @@ -31,6 +31,6 @@ class PageAll(BasePage): def get_info(self): for link in self.browser.links(): linkurl = link.absolute_url - m = re.match(re.escape(self.url) + '([a-zA-Z0-9]+)$', linkurl) + m = re.match(re.escape(self.url) + r'([a-zA-Z0-9]+)\?dl$', linkurl) if m: return {'id': m.group(1)}