From 591746fc659d7cb8a5c5abaf49becfaf6ed207e2 Mon Sep 17 00:00:00 2001 From: Nikolay Golub Date: Sun, 20 Jul 2014 16:30:45 +0400 Subject: [PATCH] fix error with main_window garbage collecting --- pyjtt/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyjtt/app.py b/pyjtt/app.py index f8f6ba2..ecceba1 100644 --- a/pyjtt/app.py +++ b/pyjtt/app.py @@ -89,7 +89,7 @@ def app_quit(): utils.write_config(config) else: app_quit() - gui.MainWindow(jira_host, login, password) + main_window = gui.MainWindow(jira_host, login, password) app_quit()