projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c74929
)
python fix
author
Miklos Szeredi
<miklos@szeredi.hu>
Fri, 16 Nov 2001 21:58:22 +0000
(21:58 +0000)
committer
Miklos Szeredi
<miklos@szeredi.hu>
Fri, 16 Nov 2001 21:58:22 +0000
(21:58 +0000)
python/fuse.py
patch
|
blob
|
history
diff --git
a/python/fuse.py
b/python/fuse.py
index 7336fd75f9c96bf3dbb436d5e321a6c97e4b162c..74b238001ffd353c14d85a90810e068371f682d3 100644
(file)
--- 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.
l
chown(path, user, group)
+ return os.chown(path, user, group)
def truncate(self, path, size):
f = open(path, "w+")