summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--paramiko/client.py2
-rw-r--r--paramiko/pkey.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/client.py b/paramiko/client.py
index 9471b06e..9e78abf9 100644
--- a/paramiko/client.py
+++ b/paramiko/client.py
@@ -314,7 +314,7 @@ class SSHClient (object):
return stdin, stdout, stderr
def invoke_shell(self, term='vt100', width=80, height=24, width_pixels=0,
- height_pixels=0):
+ height_pixels=0):
"""
Start an interactive shell session on the SSH server. A new `.Channel`
is opened and connected to a pseudo-terminal using the requested
diff --git a/paramiko/pkey.py b/paramiko/pkey.py
index bc68b6cc..3a38d19d 100644
--- a/paramiko/pkey.py
+++ b/paramiko/pkey.py
@@ -254,7 +254,7 @@ class PKey (object):
"""
with open(filename, 'r') as f:
data = self._read_private_key(tag, f, password)
- return data
+ return data
def _read_private_key(self, tag, f, password=None):
lines = f.readlines()