convert to print_function
[htsworkflow.git] / htsworkflow / pipelines / summary.py
index 100b2c0edcf7fd8cae1f48f679b7f673cc8a1c75..1da11a39b416f8141ca9f97c485d9477ed5dfbcb 100644 (file)
@@ -1,6 +1,8 @@
 """
 Analyze the Summary.htm file produced by GERALD
 """
+from __future__ import print_function
+
 import os
 import logging
 import re
@@ -67,7 +69,7 @@ class Summary(object):
         Debugging function, report current object
         """
         tree = self.get_elements()
-        print etree.tostring(tree)
+        print(etree.tostring(tree))
 
 class SummaryGA(Summary):
     def __init__(self, filename=None, xml=None):