diff options
-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 |