diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-05 13:07:34 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-05 13:07:34 -0400 |
commit | 937eface0298a04427d97491de4c16a9889d7fe0 (patch) | |
tree | 12f45a5df4c0b11cc0202d65c600d4ebbe27c857 /release.py | |
parent | a4db48e4c0fb7955d79cc798101438620a81f056 (diff) | |
download | external_python_setuptools-937eface0298a04427d97491de4c16a9889d7fe0.tar.gz external_python_setuptools-937eface0298a04427d97491de4c16a9889d7fe0.tar.bz2 external_python_setuptools-937eface0298a04427d97491de4c16a9889d7fe0.zip |
Fixed two more NameErrors on Python 3 in release script
Diffstat (limited to 'release.py')
-rw-r--r-- | release.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -140,7 +140,7 @@ def do_release(): set_versions() - res = raw_input('Have you read through the SCM changelog and ' + res = 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'): @@ -148,7 +148,7 @@ def do_release(): raise SystemExit(1) print("Travis-CI tests: http://travis-ci.org/#!/jaraco/setuptools") - res = raw_input('Have you or has someone verified that the tests ' + res = input('Have you or has someone verified that the tests ' 'pass on this revision? ') if not res.lower().startswith('y'): print("Please do that") |