Browse Source

Fixed typo

Jonas Borgström 11 years ago
parent
commit
1b0e21b95a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      attic/archive.py

+ 1 - 1
attic/archive.py

@@ -61,7 +61,7 @@ class ChunkBuffer:
     BUFFER_SIZE = 1 * 1024 * 1024
 
     def __init__(self, key):
-        self.buffer = BytesIO().write
+        self.buffer = BytesIO()
         self.packer = msgpack.Packer(unicode_errors='surrogateescape')
         self.chunks = []
         self.key = key