diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-11-16 21:58:22 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-11-16 21:58:22 +0000 |
commit | 07d2849a34149dd350e8a028e4b8012eb1d622be (patch) | |
tree | a8324af78685373ac921d6ef6e3741354eeafc73 /python/fuse.py | |
parent | 4c749295c233ceaa91b53c816eb4ad3ccfee4748 (diff) | |
download | libfuse-07d2849a34149dd350e8a028e4b8012eb1d622be.tar.gz |
python fix
Diffstat (limited to 'python/fuse.py')
-rw-r--r-- | python/fuse.py | 2 |
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+") |