Python 3.4-3.7 support;
[librarian.git] / librarian / hyphenator.py
index 18d402b..aa5b4c3 100644 (file)
@@ -14,6 +14,7 @@ info@wilbertberendsen.nl
 License: LGPL.
 
 """
+from __future__ import print_function, unicode_literals
 
 import sys
 import re
@@ -235,5 +236,5 @@ if __name__ == "__main__":
     h = Hyphenator(dict_file, left=1, right=1)
 
     for i in h(word):
-        print i
+        print(i)