summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/archive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/archive.py b/files/archive.py
index f6791ff5..76dcb9cf 100644
--- a/files/archive.py
+++ b/files/archive.py
@@ -175,7 +175,7 @@ def main():
successes.append(path)
elif compression == 'zip':
- archive = zipfile.ZipFile(creates, 'wb')
+ archive = zipfile.ZipFile(creates, 'w')
for path in archive_paths:
archive.write(path, path[len(arcroot):])