summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2013-10-22 14:32:23 (GMT)
committerThomas Graf <tgraf@suug.ch>2013-10-22 14:32:23 (GMT)
commit72bf363654c041842ed12f4020042ab551a9929b (patch)
tree09b383208eb338e1c4d620aa70dd0852c72c88df
parent74db300236b600c0c38030f5977d9d4a77063af5 (diff)
downloadlibnl-72bf363654c041842ed12f4020042ab551a9929b.zip
libnl-72bf363654c041842ed12f4020042ab551a9929b.tar.gz
libnl-72bf363654c041842ed12f4020042ab551a9929b.tar.bz2
doxygen-link: Be python3 compatible
Reported-by: Teto <mattator@gmail.com> Signed-off-by: Thomas Graf <tgraf@suug.ch>
-rwxr-xr-xdoc/doxygen-link.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/doxygen-link.py b/doc/doxygen-link.py
index fda193c..a1596d6 100755
--- a/doc/doxygen-link.py
+++ b/doc/doxygen-link.py
@@ -17,4 +17,4 @@ def translate(match):
rc = re.compile('|'.join(map(re.escape, sorted(links, reverse=True))))
for line in open(sys.argv[2], 'r'):
- print rc.sub(translate, line),
+ print(rc.sub(translate, line))