Skip to content

Commit

Permalink
write utf-8 with patreon script
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmattkc committed Dec 29, 2021
1 parent 1fedcf6 commit eab3148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dialog/about/patreon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
else:
break

text_file = open("patreon.h", "w")
text_file = open("patreon.h", "w", encoding="utf-8")
text_file.write("#ifndef PATREON_H\n#define PATREON_H\n\n#include <QStringList>\n\nQStringList patrons = {\n%s\n};\n\n#endif // PATREON_H\n" % name_list)
text_file.close()

0 comments on commit eab3148

Please sign in to comment.