summaryrefslogtreecommitdiff
path: root/fs/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/errors.py')
-rw-r--r--fs/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/errors.py b/fs/errors.py
index b216c64..e3eb618 100644
--- a/fs/errors.py
+++ b/fs/errors.py
@@ -30,7 +30,7 @@ class PathError(FSError):
def __init__(self,path,**kwds):
self.path = path
- super(ResourceError,self).__init__(**kwds)
+ super(PathError,self).__init__(**kwds)
class OperationFailedError(FSError):