Commit e2a88632 by rfkelly0

wrap_fs_methods: add "createfile" to list of FS methods

parent 9c14530f
...@@ -259,7 +259,7 @@ def wrap_fs_methods(decorator,cls=None,exclude=[]): ...@@ -259,7 +259,7 @@ def wrap_fs_methods(decorator,cls=None,exclude=[]):
methods = ("open","exists","isdir","isfile","listdir","makedir","remove", methods = ("open","exists","isdir","isfile","listdir","makedir","remove",
"setcontents","removedir","rename","getinfo","copy","move", "setcontents","removedir","rename","getinfo","copy","move",
"copydir","movedir","close","getxattr","setxattr","delxattr", "copydir","movedir","close","getxattr","setxattr","delxattr",
"listxattrs","getsyspath") "listxattrs","getsyspath","createfile")
def apply_decorator(cls): def apply_decorator(cls):
for method_name in methods: for method_name in methods:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment