Skip to content

Commit

Permalink
Update fsspec/implementations/sftp.py
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Durant <[email protected]>
  • Loading branch information
DimitriPapadopoulos and martindurant authored Sep 28, 2023
1 parent 53e1854 commit 247332b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsspec/implementations/sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def makedirs(self, path, exist_ok=False, mode=511):
self.ftp.mkdir(path, mode)

def rmdir(self, path):
logger.debug(f"Removing folder {path}")
logger.debug(f"Removing folder %s", path)
self.ftp.rmdir(path)

def info(self, path):
Expand Down

0 comments on commit 247332b

Please sign in to comment.