summaryrefslogtreecommitdiff
path: root/demos/demo.py
diff options
context:
space:
mode:
authorScott Maxwell <scott@codecobblers.com>2013-10-30 17:15:25 -0700
committerScott Maxwell <scott@codecobblers.com>2013-10-30 17:15:25 -0700
commit7cdbbf4bdc864bfbbab019787857a9a06d14d7e8 (patch)
tree4f298821725bd8f43f9a59ce4065ee2380cb3ae7 /demos/demo.py
parent0b7d0cf0a23e4f16f8552ae05a66539119e2e920 (diff)
downloadparamiko-7cdbbf4bdc864bfbbab019787857a9a06d14d7e8.tar.gz
Fix input
Diffstat (limited to 'demos/demo.py')
-rwxr-xr-xdemos/demo.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/demos/demo.py b/demos/demo.py
index 3890eda7..744b5c31 100755
--- a/demos/demo.py
+++ b/demos/demo.py
@@ -59,13 +59,13 @@ def agent_auth(transport, username):
def manual_auth(username, hostname):
default_auth = 'p'
- auth = raw_input('Auth by (p)assword, (r)sa key, or (d)ss key? [%s] ' % default_auth)
+ auth = input('Auth by (p)assword, (r)sa key, or (d)ss key? [%s] ' % default_auth)
if len(auth) == 0:
auth = default_auth
if auth == 'r':
default_path = os.path.join(os.environ['HOME'], '.ssh', 'id_rsa')
- path = raw_input('RSA key [%s]: ' % default_path)
+ path = input('RSA key [%s]: ' % default_path)
if len(path) == 0:
path = default_path
try:
@@ -76,7 +76,7 @@ def manual_auth(username, hostname):
t.auth_publickey(username, key)
elif auth == 'd':
default_path = os.path.join(os.environ['HOME'], '.ssh', 'id_dsa')
- path = raw_input('DSS key [%s]: ' % default_path)
+ path = input('DSS key [%s]: ' % default_path)
if len(path) == 0:
path = default_path
try:
@@ -99,7 +99,7 @@ if len(sys.argv) > 1:
if hostname.find('@') >= 0:
username, hostname = hostname.split('@')
else:
- hostname = raw_input('Hostname: ')
+ hostname = input('Hostname: ')
if len(hostname) == 0:
print('*** Hostname required.')
sys.exit(1)
@@ -112,8 +112,8 @@ if hostname.find(':') >= 0:
try:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((hostname, port))
-except Exception, e:
- print '*** Connect failed: ' + str(e)
+except Exception:
+ e = sys.exc_info()[1]
print('*** Connect failed: ' + str(e))
traceback.print_exc()
sys.exit(1)
@@ -150,7 +150,7 @@ try:
# get username
if username == '':
default_username = getpass.getuser()
- username = raw_input('Username [%s]: ' % default_username)
+ username = input('Username [%s]: ' % default_username)
if len(username) == 0:
username = default_username