diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2009-08-06 23:23:10 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2009-08-06 23:23:10 (GMT) |
commit | 48c3c17f734f2e548b6c8d0d75a0060306a75ee6 (patch) | |
tree | f4829510a82181fb62c7f324859a6cc18ca1ec60 /FuseArchive/FileSystem.py | |
parent | 2a98d3391ca347317284347e5cd1c3ecbadc3d7e (diff) | |
download | fusearchive-48c3c17f734f2e548b6c8d0d75a0060306a75ee6.zip fusearchive-48c3c17f734f2e548b6c8d0d75a0060306a75ee6.tar.gz fusearchive-48c3c17f734f2e548b6c8d0d75a0060306a75ee6.tar.bz2 |
Add reference counting so we can delete unused chunks
Diffstat (limited to 'FuseArchive/FileSystem.py')
-rw-r--r-- | FuseArchive/FileSystem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FuseArchive/FileSystem.py b/FuseArchive/FileSystem.py index dbdc8a3..b393dbb 100644 --- a/FuseArchive/FileSystem.py +++ b/FuseArchive/FileSystem.py @@ -34,7 +34,7 @@ class FileSystem(fuse.Fuse): stats = f.fgetattr() f.release( 0 ) else: - logging.debug( "Using os.lstat to get stats" ) + logging.debug( "Using os.lstat to get stats for %s" % path ) stats = os.lstat( treefile ) return stats |