X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/45ce20d1189ea2042a097bfd9ab7b4b6e96be324..943fdd2cdeb409daee7767baa81d76103731aebd:/librarian/hyphenator.py diff --git a/librarian/hyphenator.py b/librarian/hyphenator.py index 18d402b..aa5b4c3 100644 --- a/librarian/hyphenator.py +++ b/librarian/hyphenator.py @@ -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)