We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b7a2e commit 689e394Copy full SHA for 689e394
ftpsync/ftp_target.py
@@ -433,7 +433,7 @@ def get_dir(self):
433
434
def _addline(line):
435
# ftp_retrlines_binary() made sure that we always get binary lines,
436
- # even on Python 3. This allows us to do our own decoding with
+ # even on Python 3. This allows us to do our own decoding with
437
# optional fall back.
438
assert compat.is_bytes(line)
439
@@ -463,7 +463,7 @@ def _addline(line):
463
u_name = name
464
465
name = u_name
466
-
+
467
# For Python 3 we want to work with `str` as well
468
name = compat.to_native(name)
469
data = compat.to_native(data)
0 commit comments