From c0f35a871e3fb168ac0a7edcfa60940e8ad3dba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20M=C3=A4der?= <maeder@phys.ethz.ch> Date: Mon, 10 Feb 2020 19:06:35 +0100 Subject: [PATCH] Fix bug --- rtlinks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtlinks.py b/rtlinks.py index 19e2169..7b4425b 100755 --- a/rtlinks.py +++ b/rtlinks.py @@ -74,7 +74,7 @@ class RTLinksPlugin(Plugin): api_show = '{}ticket/{}/show'.format(self.api, number) async with self.http.get(api_show, headers=self.headers) as response: content = await response.text() - ticket = dict(self.regex.findall(content)) + ticket = dict(self.regex_properties.findall(content)) markdown_link = await self.get_markdown_link(number) markdown = "{} ({}) is **{}** in **{}** from {}".format( markdown_link, -- GitLab