Fix parsing of CHANGES.txt.

--HG--
branch : distribute
extra : rebase_source : f9b735b0478ac8a6aaf371882dd5a5032bef751e
parent 22869cb6
......@@ -136,7 +136,7 @@ if _being_installed():
# return contents of reStructureText file with linked issue references
def _linkified(rst_path):
bitroot = 'http://bitbucket.org/tarek/distribute'
revision = re.compile(r'\b(issue\s*#?\d+)\b', re.M | re.I)
revision = re.compile(r'\b(issue\s+#?\d+)\b', re.M | re.I)
rst_file = open(rst_path)
rst_content = rst_file.read()
......
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