summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()