Merge pull request #360 from erikarvstedt/fix-incompatibility

Fix incompatibility with Python versions < 3.6
This commit is contained in:
Daniel Quinn 2018-06-01 07:46:50 +01:00 committed by GitHub
commit d6346706db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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