Updated paths and move app icon to be more pyinstaller friendly

This commit is contained in:
Veronica K. B. Olsen
2019-10-29 21:07:40 +01:00
parent b46a8a81b5
commit a595ec8bf2
7 changed files with 10 additions and 9 deletions
+3 -2
View File
@@ -10,8 +10,9 @@
"""
import logging
import sys
import getopt
import logging
from os import path, remove, rename
from PyQt5.QtWidgets import QApplication
@@ -196,6 +197,6 @@ def main(sysArgs):
else:
nwApp = QApplication([__package__])
nwGUI = GuiMain()
exit(nwApp.exec_())
sys.exit(nwApp.exec_())
return