diff options
author | Thomas Haller <thaller@redhat.com> | 2022-04-14 16:43:27 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2022-04-15 08:25:42 (GMT) |
commit | 4f3b4f9e03c6b028a15b48d0f995fd1cc8f96b5b (patch) | |
tree | 9cad2bec2edb8b56e2ea81b620c28f6ccf245606 | |
parent | cacaa5fd2f583e3c3fd2bc7f6439948cf056c9a2 (diff) | |
download | libnl-4f3b4f9e03c6b028a15b48d0f995fd1cc8f96b5b.zip libnl-4f3b4f9e03c6b028a15b48d0f995fd1cc8f96b5b.tar.gz libnl-4f3b4f9e03c6b028a15b48d0f995fd1cc8f96b5b.tar.bz2 |
doc: fix python2-ism in "doc/resolve-asciidoc-refs.py"
-rwxr-xr-x | doc/resolve-asciidoc-refs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/resolve-asciidoc-refs.py b/doc/resolve-asciidoc-refs.py index 5418747..7999156 100755 --- a/doc/resolve-asciidoc-refs.py +++ b/doc/resolve-asciidoc-refs.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +from __future__ import print_function + import fileinput import re import sys @@ -22,4 +24,4 @@ def translate(match): rc = re.compile('|'.join(map(re.escape, sorted(refs, reverse=True)))) for line in open(sys.argv[1], 'r'): - print rc.sub(translate, line), + print(rc.sub(translate, line), end='') |