mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-30 15:44:18 +08:00
python fix
This commit is contained in:
parent
4c749295c2
commit
07d2849a34
@ -69,7 +69,7 @@ class Xmp(Fuse):
|
||||
return os.chmod(path, mode)
|
||||
|
||||
def chown(self, path, user, group):
|
||||
return os.lchown(path, user, group)
|
||||
return os.chown(path, user, group)
|
||||
|
||||
def truncate(self, path, size):
|
||||
f = open(path, "w+")
|
||||
|
Loading…
Reference in New Issue
Block a user