Skip to content

Commit

Permalink
Merge pull request #2319 from thepith/python
Browse files Browse the repository at this point in the history
Prefer open() function instead of file() function
  • Loading branch information
KaiSzuttor authored Oct 26, 2018
2 parents 6944131 + a572333 commit 247fd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/doxygen/gen_doxyconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
print("Done.")

print("Writing {}...".format(configfilename))
configfile = file(configfilename, 'w')
configfile = open(configfilename, 'w')

configfile.write("""# WARNING: This file was autogenerated by
#
Expand Down

0 comments on commit 247fd17

Please sign in to comment.