summaryrefslogtreecommitdiffstats
path: root/testsuite/Testschema/test_schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/Testschema/test_schema.py')
-rw-r--r--testsuite/Testschema/test_schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/Testschema/test_schema.py b/testsuite/Testschema/test_schema.py
index ddfe4775f..cd9b74cdf 100644
--- a/testsuite/Testschema/test_schema.py
+++ b/testsuite/Testschema/test_schema.py
@@ -41,7 +41,7 @@ class TestSchemas(Bcfg2TestCase):
xmllint = Popen(['xmllint', '--xinclude', '--noout', '--schema',
self.schema_url] + schemas,
stdout=PIPE, stderr=STDOUT)
- print(xmllint.communicate()[0])
+ print(xmllint.communicate()[0].decode())
self.assertEqual(xmllint.wait(), 0)
def test_duplicates(self):