aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortassaron2017-05-22 16:46:59 -0400
committertassaron2017-05-22 16:46:59 -0400
commit4426b0e9057909f0f752f90fddc9047b816ad7d5 (patch)
tree77a0f62be76a9ddd7db7efb565fb86de5ca38a80
parent487743104f26e5c7608b7119b99f5aa83108edb6 (diff)
rm line that makes atexit raise an error
I don't notice any difference in behaviour without this line
-rw-r--r--main.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.py b/main.py
index 0e55196..cb862ac 100644
--- a/main.py
+++ b/main.py
@@ -185,7 +185,6 @@ class Main(QtCore.QObject):
self.settings.setValue("fontSize", str(self.window.fontsizeSpinBox.value()))
self.settings.setValue("xPosition", str(self.window.textXSpinBox.value()))
self.settings.setValue("yPosition", str(self.window.textYSpinBox.value()))
- sys.exit(0)
def openInputFileDialog(self):
inputDir = self.settings.value("inputDir", expanduser("~"))