Commit bee0b576 by Őry Máté

disk.py: fix typo

parent ee429ef5
......@@ -217,7 +217,7 @@ class Disk(object):
try:
with open(disk_path, 'wb') as f:
for chunk in r.iter_content(chunk_size=chunk_size):
if ext in ('gz', 'bz'):
if ext in ('gz', 'bz2'):
chunk = decompressor.decompress(chunk)
f.write(chunk)
actsize = f.tell()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment