44:fe5cd20cb0eb | 45:9a18f4dbb493 |
---|---|
709 QMessageBox.StandardButtons(\ | 709 QMessageBox.StandardButtons(\ |
710 QMessageBox.Abort)) | 710 QMessageBox.Abort)) |
711 return False | 711 return False |
712 | 712 |
713 try: | 713 try: |
714 pf = open(pfile, "w") | 714 pf = open(pfile, "w", encoding = "utf-8") |
715 for key, list in sections: | 715 for key, list in sections: |
716 if len(list) > 0: | 716 if len(list) > 0: |
717 pf.write('%s = ' % key) | 717 pf.write('%s = ' % key) |
718 last = len(list) - 1 | 718 last = len(list) - 1 |
719 if last > 0: | 719 if last > 0: |