diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2011-10-14 12:15:38 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2011-10-14 12:15:38 -0400 |
commit | 9af04bdc389e811e4d97187cf3be7a7f531b787b (patch) | |
tree | 27c47e2df7fbf5af31accbc0187aa378ff96219f /release.py | |
parent | 92a211d570706bb5ecebaeea04845ceec9c77ac3 (diff) | |
download | external_python_setuptools-9af04bdc389e811e4d97187cf3be7a7f531b787b.tar.gz external_python_setuptools-9af04bdc389e811e4d97187cf3be7a7f531b787b.tar.bz2 external_python_setuptools-9af04bdc389e811e4d97187cf3be7a7f531b787b.zip |
Fixed error in do_release
--HG--
branch : distribute
extra : rebase_source : cc27ca582dfcc618e6adebc60d32532aed09b07e
Diffstat (limited to 'release.py')
-rw-r--r-- | release.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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]) |