diff options
Diffstat (limited to 'FuseArchive/Chunk.py')
-rw-r--r-- | FuseArchive/Chunk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FuseArchive/Chunk.py b/FuseArchive/Chunk.py index c011382..2ceb7ed 100644 --- a/FuseArchive/Chunk.py +++ b/FuseArchive/Chunk.py @@ -42,7 +42,7 @@ class Chunk: # Converts the output of serialize back to a chunk object @staticmethod - def unserialize(data): + def deserialize(data): hd = Chunk.parse_header( data[ :64 ] ) obj = Chunk() obj.count = hd[ 'count' ] |