commit 8bb9f4568645771f464cf266a1b80146118a458e
parent 1393968c5a1db1239a30c901616738c5b44d86c8
Author: Siddharth Ravikumar <sravik@bgsu.edu>
Date: Thu, 17 Dec 2015 17:01:13 -0500
Removed buffering in combox.file.write_file func.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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: