summaryrefslogtreecommitdiff
path: root/test/test_farm.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_farm.py')
-rw-r--r--test/test_farm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_farm.py b/test/test_farm.py
index 239dac00..6e8f3467 100644
--- a/test/test_farm.py
+++ b/test/test_farm.py
@@ -135,7 +135,7 @@ class FarmTestCase(object):
retcode, output = run_command(cmd)
print output,
if outfile:
- open(outfile, "a+").write(output.decode('utf-8'))
+ open(outfile, "a+").write(output)
if retcode:
raise Exception("command exited abnormally")
finally: