summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2013-01-01 11:05:11 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2013-01-01 11:05:11 +0100
commit5f738c54a3de45e1f44321eb8e27cfe10ce97e90 (patch)
tree224f571a86f35955c731d08f7a6e322a3e697a1f
parent22869cb64b8779feca1a0dfe3d03d4bcce7af992 (diff)
downloadpython-setuptools-git-5f738c54a3de45e1f44321eb8e27cfe10ce97e90.tar.gz
Fix parsing of CHANGES.txt.
--HG-- branch : distribute extra : rebase_source : f9b735b0478ac8a6aaf371882dd5a5032bef751e
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 81de4e3d..cecb9e9f 100755
--- a/setup.py
+++ b/setup.py
@@ -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()