From 48738dab9f67d6e8882f63102ffeafa423b39df9 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Fri, 1 Jun 2018 00:45:59 +0200 Subject: [PATCH] Fix incompatibility with Python versions < 3.6 Direct index access to a match was only added in 3.6. Fixes #359 --- src/documents/templatetags/hacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/templatetags/hacks.py b/src/documents/templatetags/hacks.py index 4faf1783f..0c0a0e099 100644 --- a/src/documents/templatetags/hacks.py +++ b/src/documents/templatetags/hacks.py @@ -38,6 +38,6 @@ def add_doc_edit_url(result): """ title = result[1] match = re.search(EXTRACT_URL, title) - edit_doc_url = match[1] + edit_doc_url = match.group(1) result.append(edit_doc_url) return result