Skip to content
Snippets Groups Projects

Tag new bugs with bug:workboard

Merged Andrej Shadura requested to merge wip/andrewsh/tag-bugs into master
Files
3
+ 2
2
@@ -58,8 +58,8 @@ REPORT_PLATFORMS = [
def _format_notes(notes):
apertis_match = re.compile(r'\bAPERTIS-T(?P<task>\d+)\b')
http_match = re.compile(r'\bhttp(s)?://(\S+)\b')
apertis_link = '<a href="{}/T\g<task>">\g<0></a>'
http_link = '<a href="\g<0>">\g<0></a>'
apertis_link = r'<a href="{}/T\g<task>">\g<0></a>'
http_link = r'<a href="\g<0>">\g<0></a>'
apertis_task_link = apertis_link.format(config['apertis-phab'])
Loading