Commit 937eface authored by Jason R. Coombs's avatar Jason R. Coombs

Fixed two more NameErrors on Python 3 in release script

parent a4db48e4
...@@ -140,7 +140,7 @@ def do_release(): ...@@ -140,7 +140,7 @@ def do_release():
set_versions() 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}? ' 'confirmed the changelog is current for releasing {VERSION}? '
.format(**globals())) .format(**globals()))
if not res.lower().startswith('y'): if not res.lower().startswith('y'):
...@@ -148,7 +148,7 @@ def do_release(): ...@@ -148,7 +148,7 @@ def do_release():
raise SystemExit(1) raise SystemExit(1)
print("Travis-CI tests: http://travis-ci.org/#!/jaraco/setuptools") 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? ') 'pass on this revision? ')
if not res.lower().startswith('y'): if not res.lower().startswith('y'):
print("Please do that") print("Please do that")
......
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