diff options
| author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2013-01-01 11:05:11 +0100 |
|---|---|---|
| committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2013-01-01 11:05:11 +0100 |
| commit | 5f738c54a3de45e1f44321eb8e27cfe10ce97e90 (patch) | |
| tree | 224f571a86f35955c731d08f7a6e322a3e697a1f /setup.py | |
| parent | 22869cb64b8779feca1a0dfe3d03d4bcce7af992 (diff) | |
| download | python-setuptools-git-5f738c54a3de45e1f44321eb8e27cfe10ce97e90.tar.gz | |
Fix parsing of CHANGES.txt.
--HG--
branch : distribute
extra : rebase_source : f9b735b0478ac8a6aaf371882dd5a5032bef751e
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |
