Skip to content

Commit e5f21c2

Browse files
author
Kevin Pyle
committed
Python3: libcpychecker: fix print-as-function SyntaxError
1 parent 41832b2 commit e5f21c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcpychecker/html/make_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def main(argv):
273273
return "Please provide code and json filenames."
274274
codefile = open(argv[1])
275275
jsonfile = open(argv[2])
276-
print HtmlPage(codefile, jsonfile)
276+
print(HtmlPage(codefile, jsonfile))
277277

278278
if __name__ == '__main__':
279279
from sys import argv as ARGV

0 commit comments

Comments
 (0)