summaryrefslogtreecommitdiff
path: root/fs/multifs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2012-01-11 23:42:36 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2012-01-11 23:42:36 +0000
commit39ef2b6768f446470e6b6a53aab9ffe01e9fade1 (patch)
tree7fa52406ffed146bc210e2764c4ee6a78fb7ce96 /fs/multifs.py
parent60da3d535a5d591b7003e93e66364bd6ea161461 (diff)
downloadpyfilesystem-git-39ef2b6768f446470e6b6a53aab9ffe01e9fade1.tar.gz
Changed DeleteRootError to RemoveRootError for consistency
Diffstat (limited to 'fs/multifs.py')
-rw-r--r--fs/multifs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/multifs.py b/fs/multifs.py
index cd4e987..227e0d3 100644
--- a/fs/multifs.py
+++ b/fs/multifs.py
@@ -294,7 +294,7 @@ class MultiFS(FS):
if self.writefs is None:
raise OperationFailedError('removedir', path=path, msg="No writeable FS set")
if normpath(path) in ('', '/'):
- raise DeleteRootError(path)
+ raise RemoveRootError(path)
self.writefs.removedir(path, recursive=recursive, force=force)
@synchronize