summaryrefslogtreecommitdiff
path: root/paramiko/ssh_exception.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-10-11 18:23:55 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-10-11 18:23:55 -0700
commitfe9dd1b326464d162141e042d939ba56cfde18d1 (patch)
tree6752ef97c0699982493b2864cce7b12d9b8c2ec2 /paramiko/ssh_exception.py
parent838748dcb61af0a469230690aa369dd1ae8895ab (diff)
downloadparamiko-fe9dd1b326464d162141e042d939ba56cfde18d1.tar.gz
More string format updates
Diffstat (limited to 'paramiko/ssh_exception.py')
-rw-r--r--paramiko/ssh_exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py
index f8405a31..2df84b65 100644
--- a/paramiko/ssh_exception.py
+++ b/paramiko/ssh_exception.py
@@ -128,7 +128,7 @@ class ProxyCommandFailure (SSHException):
"""
def __init__(self, command, error):
SSHException.__init__(self,
- '"ProxyCommand (%s)" returned non-zero exit status: %s' % (
+ '"ProxyCommand ({})" returned non-zero exit status: {}'.format(
command, error
)
)