python fix

This commit is contained in:
Miklos Szeredi 2001-11-16 21:58:22 +00:00
parent 4c749295c2
commit 07d2849a34

View File

@ -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+")