diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-12-17 17:01:13 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-12-17 17:01:13 -0500 |
commit | 8bb9f4568645771f464cf266a1b80146118a458e (patch) | |
tree | 16ea372f6a3fe7b29a480afc7b2bc0eaf9f03281 | |
parent | 1393968c5a1db1239a30c901616738c5b44d86c8 (diff) |
Removed buffering in combox.file.write_file func.
-rw-r--r-- | combox/file.py | 2 |
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: |