summaryrefslogtreecommitdiff
path: root/obbenchlib/result.py
diff options
context:
space:
mode:
Diffstat (limited to 'obbenchlib/result.py')
-rw-r--r--obbenchlib/result.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/obbenchlib/result.py b/obbenchlib/result.py
index 8ac24b8..d782680 100644
--- a/obbenchlib/result.py
+++ b/obbenchlib/result.py
@@ -54,4 +54,4 @@ class Result(object):
}
filename = os.path.join(dirname, '{}.yaml'.format(self._result_id))
with open(filename, 'w') as f:
- yaml.safe_dump(o, stream=f)
+ yaml.dump(o, stream=f, Dumper=yaml.CSafeDumper)