diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-12-27 17:00:44 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-12-27 17:00:44 +0000 |
commit | 467a7bd2826e2a01221f425e9a1878df6148486d (patch) | |
tree | b896bc29c99df771a60798060010a887bd09beb5 /Lib/distutils/command/register.py | |
parent | d148630e72737ea9e0fd27b971e06910e529f593 (diff) | |
download | cpython-git-467a7bd2826e2a01221f425e9a1878df6148486d.tar.gz |
fix 2.x isms in distutils test
Diffstat (limited to 'Lib/distutils/command/register.py')
-rw-r--r-- | Lib/distutils/command/register.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py index bd9b8c0143..30e9a37e6a 100644 --- a/Lib/distutils/command/register.py +++ b/Lib/distutils/command/register.py @@ -150,7 +150,7 @@ We need to know who you are, so please choose either: 3. have the server generate a new password for you (and email it to you), or 4. quit Your selection [default 1]: ''', log.INFO) - choice = raw_input() + choice = input() if not choice: choice = '1' elif choice not in choices: |