summaryrefslogtreecommitdiffstats
path: root/combox/file.py
diff options
context:
space:
mode:
Diffstat (limited to 'combox/file.py')
-rw-r--r--combox/file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/combox/file.py b/combox/file.py
index 3b88381..b02c1ab 100644
--- a/combox/file.py
+++ b/combox/file.py
@@ -376,7 +376,7 @@ def write_file(filename, filecontent):
"""
file_ = None
try:
- file_ = open(filename, 'wb', 838860800)
+ file_ = open(filename, 'wb')
file_.write(filecontent)
file_.close()
except IOError: