summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRebecka Gulliksson <rebecka.gulliksson@umu.se>2015-09-09 13:29:44 +0200
committerRebecka Gulliksson <rebecka.gulliksson@umu.se>2015-09-09 13:29:44 +0200
commite52c353ccc5f3a32298eccf951f85eb57179ca3d (patch)
tree775a733c1f861107bb001a4af5f0b3dece9db1e5 /tools
parent17234e9ab9dfab4cf5600f67f1d24db5064f1025 (diff)
downloadpysaml2-e52c353ccc5f3a32298eccf951f85eb57179ca3d.tar.gz
Write unicode string instead of bytes to stdout in tools/make_metadata.py
Diffstat (limited to 'tools')
-rwxr-xr-xtools/make_metadata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_metadata.py b/tools/make_metadata.py
index 0a118a67..54347897 100755
--- a/tools/make_metadata.py
+++ b/tools/make_metadata.py
@@ -81,4 +81,4 @@ else:
valid_instance(eid)
xmldoc = metadata_tostring_fix(eid, nspair, xmldoc)
- print(xmldoc)
+ print(xmldoc.decode("utf-8"))