summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/builder2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/builder2.py b/morphlib/builder2.py
index 3c0d9e02..dbfed48d 100644
--- a/morphlib/builder2.py
+++ b/morphlib/builder2.py
@@ -294,7 +294,7 @@ class BuilderBase(object):
# Unit tests use StringIO, which in Python 2.6 isn't usable with
# the "with" statement. So we don't do it with "with".
f = self._open(filename, 'w')
- f.write(json.dumps(meta, indent=4, sort_keys=True))
+ f.write(json.dumps(meta, indent=4, sort_keys=True, ensure_ascii=False))
f.close()
def new_artifact(self, artifact_name):