aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2011-10-14 12:15:38 -0400
committerJason R. Coombs <jaraco@jaraco.com>2011-10-14 12:15:38 -0400
commit9af04bdc389e811e4d97187cf3be7a7f531b787b (patch)
tree27c47e2df7fbf5af31accbc0187aa378ff96219f /release.py
parent92a211d570706bb5ecebaeea04845ceec9c77ac3 (diff)
downloadexternal_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.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])