f274b32 adds:
def copydir(self, src_path, dst_path, create=False):
# stuff
move_dir(src_fs, _src_path, dst_fs, _dst_path)
and also
def copydir(self, src_path, dst_path, create=False):
# stuff
copy_dir(src_fs, _src_path, dst_fs, _dst_path)
Should the first def copydir actually have been def movedir ?
f274b32 adds:
and also
Should the first
def copydiractually have beendef movedir?