From 937eface0298a04427d97491de4c16a9889d7fe0 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 5 Jul 2013 13:07:34 -0400 Subject: Fixed two more NameErrors on Python 3 in release script --- release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'release.py') diff --git a/release.py b/release.py index 3afa7fb5..39d0b613 100644 --- a/release.py +++ b/release.py @@ -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") -- cgit v1.2.3