Commit b9928121 authored by Jason R. Coombs's avatar Jason R. Coombs

Add whitespace to remove linter warnings

--HG--
extra : rebase_source : 2f37f043a6cc87cc015efa318699bc09785dbd87
parent 76d45c48
......@@ -13,6 +13,7 @@ try:
except AttributeError:
zip_longest = itertools.izip_longest
def before_upload():
_linkify('CHANGES.txt', 'CHANGES (links).txt')
_add_bootstrap_bookmark()
......@@ -43,6 +44,7 @@ issue_urls = dict(
python='http://bugs.python.org/issue{python}',
)
def _linkify(source, dest):
pattern = '|'.join(link_patterns)
with open(source) as source:
......@@ -50,6 +52,7 @@ def _linkify(source, dest):
with open(dest, 'w') as dest:
dest.write(out)
def replacer(match):
text = match.group(0)
match_dict = match.groupdict()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment