Skip to content

Commit 0659cbb

Browse files
author
Kevin Pyle
committed
Python3: makeindex.py: fix print-as-function SyntaxError
1 parent 4ac3e55 commit 0659cbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/fedora/makeindex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def __init__(self, path):
263263
with open(buildlog) as f:
264264
for line in f.readlines():
265265
if 0:
266-
print repr(line)
266+
print(repr(line))
267267
m = re.match('NotImplementedError: not yet implemented: (\S+)',
268268
line)
269269
if m:

0 commit comments

Comments
 (0)