aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-19 19:50:13 -0400
committerJack Lloyd <[email protected]>2017-09-19 19:50:13 -0400
commit1fc32b718bc65a9ff0bcb0606d39c4ed69185943 (patch)
tree566daec07c4b7894e5c049130dc8922859c80735 /src
parent2fdd4577989e259874cf49952d96ab02d3c5b690 (diff)
Handle : (as appears in 'git:revid')
Diffstat (limited to 'src')
-rw-r--r--src/configs/sphinx/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configs/sphinx/conf.py b/src/configs/sphinx/conf.py
index 7d968f21b..289a0eb1a 100644
--- a/src/configs/sphinx/conf.py
+++ b/src/configs/sphinx/conf.py
@@ -18,7 +18,7 @@ def check_for_tag(tag):
def parse_version_file(version_path):
version_file = open(version_path)
- key_and_val = re.compile(r"([a-z_]+) = ([a-zA-Z0-9\']+)")
+ key_and_val = re.compile(r"([a-z_]+) = ([a-zA-Z0-9:\']+)")
results = {}
for line in version_file.readlines():