Skip to content

Commit 55dfeb3

Browse files
authored
fix movedir (#323)
1 parent d6d51f2 commit 55dfeb3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [2.4.10] - 2019-07-29
9+
10+
### Fixed
11+
12+
- Fixed broken WrapFS.movedir [#322](https://github.com/PyFilesystem/pyfilesystem2/issues/322)
13+
814
## [2.4.9] - 2019-07-28
915

1016
### Fixed

fs/wrapfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def move(self, src_path, dst_path, overwrite=False):
180180
raise errors.DestinationExists(_dst_path)
181181
move_file(src_fs, _src_path, dst_fs, _dst_path)
182182

183-
def copydir(self, src_path, dst_path, create=False):
183+
def movedir(self, src_path, dst_path, create=False):
184184
# type: (Text, Text, bool) -> None
185185
src_fs, _src_path = self.delegate_path(src_path)
186186
dst_fs, _dst_path = self.delegate_path(dst_path)

0 commit comments

Comments
 (0)