Description: Convert domutils.py to python3
Author: Johann Felix Soden <johfel@debian.org>

--- a/doc/db2vim/domutils.py
+++ b/doc/db2vim/domutils.py
@@ -20,7 +20,7 @@
     child = element.firstChild
     while not child.nextSibling is None:
         child = child.nextSibling
-        print child
+        print(child)
         if child.nodeType == child.TEXT_NODE:
             text = text + child.data
 
