Commit 9af04bdc authored by Jason R. Coombs's avatar Jason R. Coombs

Fixed error in do_release

--HG--
branch : distribute
extra : rebase_source : cc27ca582dfcc618e6adebc60d32532aed09b07e
parent 92a211d5
......@@ -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])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment