summaryrefslogtreecommitdiff
path: root/python/tests/exslt.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/exslt.py')
-rwxr-xr-xpython/tests/exslt.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/exslt.py b/python/tests/exslt.py
index c7333efb..de5e42bf 100755
--- a/python/tests/exslt.py
+++ b/python/tests/exslt.py
@@ -44,14 +44,14 @@ expect="""<?xml version="1.0"?>
"""
if stringval != expect:
- print "Exslt processing failed"
+ print("Exslt processing failed")
sys.exit(255)
-
+
# Memory debug specific
libxslt.cleanup()
if libxml2.debugMemory(1) == 0:
- print "OK"
+ print("OK")
else:
- print "Memory leak %d bytes" % (libxml2.debugMemory(1))
+ print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
libxml2.dumpMemory()
sys.exit(255)