aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-11-16 21:58:22 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-11-16 21:58:22 +0000
commit07d2849a34149dd350e8a028e4b8012eb1d622be (patch)
treea8324af78685373ac921d6ef6e3741354eeafc73
parent4c749295c233ceaa91b53c816eb4ad3ccfee4748 (diff)
downloadlibfuse-07d2849a34149dd350e8a028e4b8012eb1d622be.tar.gz
python fix
-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+")