diff options
Diffstat (limited to 'FuseArchive/Storage')
-rw-r--r-- | FuseArchive/Storage/FileSystem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FuseArchive/Storage/FileSystem.py b/FuseArchive/Storage/FileSystem.py index 8488964..bdb6176 100644 --- a/FuseArchive/Storage/FileSystem.py +++ b/FuseArchive/Storage/FileSystem.py @@ -1,7 +1,7 @@ # This will write out a data block, it will return a key that can get this # data back later def save_chunk( chunk ): - if magic_profiling: + if FuseArchive.magic_profiling: return( [ 0, 0 ] ) logging.debug( "Begin save_chunk, length: %d" % len( chunk ) ) @@ -66,7 +66,7 @@ def save_chunk( chunk ): # This will return a data block by key that was saved previously def load_chunk( key ): - if magic_profiling: + if FuseArchive.magic_profiling: return '' ( thash, seq ) = key |