aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/fuse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fuse.py b/python/fuse.py
index 7336fd7..74b2380 100644
--- a/python/fuse.py
+++ b/python/fuse.py
@@ -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+")