summaryrefslogtreecommitdiff
path: root/gen-changelog.py
diff options
context:
space:
mode:
Diffstat (limited to 'gen-changelog.py')
-rw-r--r--gen-changelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen-changelog.py b/gen-changelog.py
index b607ca2..c79e7d3 100644
--- a/gen-changelog.py
+++ b/gen-changelog.py
@@ -81,7 +81,7 @@ def get_rel_tags():
for lin in p.stdout.readlines():
match = reltagre.search (lin)
if match:
- (sha, maj, min, nano) = match.groups()
+ (sha, maj, min, nano) = match.groups()
release_refs[sha] = (maj, min, nano)
def find_start_tag():