Commit b4c60104 by Craig Heffner

Reverted display file utf-8 encoding to prevent unicode exceptions in Python2.

parent 721ccbeb
......@@ -31,7 +31,7 @@ class Display(object):
self._configure_formatting()
if log:
self.fp = codecs.open(log, "a", encoding='utf-8')
self.fp = open(log, "a")
if csv:
self.csv = pycsv.writer(self.fp)
......
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 to comment