aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
Diffstat (limited to 'release.py')
-rw-r--r--release.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release.py b/release.py
index 958d9373..b353156c 100644
--- a/release.py
+++ b/release.py
@@ -34,10 +34,10 @@ def do_release():
res = raw_input('Have you read through the SCM changelog and '
'confirmed the changelog is current for releasing {VERSION}? '
.format(**globals()))
- if not res.lower.startswith('y'):
+ if not res.lower().startswith('y'):
print("Please do that")
raise SystemExit(1)
-
+
subprocess.check_call(['hg', 'tag', VERSION])
subprocess.check_call(['hg', 'update', VERSION])