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 940fd8c commit 7c34e41Copy full SHA for 7c34e41
fs/move.py
@@ -152,7 +152,7 @@ def move_dir(
152
if not _src_fs.isdir(src_path):
153
raise DirectoryExpected(src_path)
154
155
- # if both filesystems have a syspath we use `os.rename` to move the folder
+ # if both filesystems have a syspath we use `shutil.move` to move the folder
156
if _src_fs.hassyspath(src_path) and _dst_fs.hassyspath(dst_path):
157
src_syspath = _src_fs.getsyspath(src_path)
158
dst_syspath = _dst_fs.getsyspath(dst_path)
0 commit comments