Skip to content

Commit

Permalink
get_page_description.py: fix print() for Py3
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Jun 19, 2020
1 parent 8bc1d41 commit e59ea8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/addons/get_page_description.py
Expand Up @@ -140,7 +140,7 @@ def main(filename):
desc = "(incomplete manual page, please fix)"
# the original script attempted to add also </li> but it as not working
# now we leave up to the caller as well as whitespace around
print desc
print(desc)


if __name__ == "__main__":
Expand Down

0 comments on commit e59ea8f

Please sign in to comment.