summaryrefslogtreecommitdiffhomepage
path: root/tests/test_sftp.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sftp.py')
-rw-r--r--tests/test_sftp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py
index 3a5224c9..a98a46c6 100644
--- a/tests/test_sftp.py
+++ b/tests/test_sftp.py
@@ -566,8 +566,8 @@ class TestSFTP(object):
fd, localname = mkstemp()
os.close(fd)
- with open(localname, 'wb') as f:
- f.write(b'0' * num_chars)
+ with open(localname, "wb") as f:
+ f.write(b"0" * num_chars)
sftp.put(localname, sftp_filename)