Skip to content
Snippets Groups Projects
Commit c0f35a87 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Fix bug

parent fd64418b
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment