diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 16:16:34 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 16:16:34 +0100 |
commit | c0443fc60c07bc42a0a4dd1bf7fe292df8d3a48d (patch) | |
tree | 339f0d44c201d1211149ae05da53bf1702159d73 | |
parent | cc28b964c0379b9d5da2320a387c0c01e69f0ec1 (diff) | |
download | tagit-c0443fc60c07bc42a0a4dd1bf7fe292df8d3a48d.tar.gz tagit-c0443fc60c07bc42a0a4dd1bf7fe292df8d3a48d.tar.bz2 tagit-c0443fc60c07bc42a0a4dd1bf7fe292df8d3a48d.zip |
cleanup
-rw-r--r-- | tagit/windows/desktop.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tagit/windows/desktop.py b/tagit/windows/desktop.py index 60e23d4..2c087b2 100644 --- a/tagit/windows/desktop.py +++ b/tagit/windows/desktop.py @@ -121,9 +121,9 @@ class MainWindow(FloatLayout): #App.get_running_app().stop() def on_request_close(self, *args): - with open('.action_history', 'a') as ofile: - for itm in self.action_log: - ofile.write(f'{itm}\n') + #with open('.action_history', 'a') as ofile: + # for itm in self.action_log: + # ofile.write(f'{itm}\n') #App.get_running_app().stop() # FIXME: mb/port: from CloseSessionAndExit return False |