From 68c0ed4e6bb6659928423ea7363ed2f28fbdd4ca Mon Sep 17 00:00:00 2001 From: athulappadan Date: Fri, 10 Apr 2015 12:17:58 +0530 Subject: Exit method modified --- src/configuration/Appconfig.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/configuration') diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index 5735534b..a5dfa546 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -20,7 +20,8 @@ from PyQt4 import QtGui import os - +global procThread_list # keeps tracking all the processes called +procThread_list = [] class Appconfig(QtGui.QWidget): """ @@ -33,8 +34,7 @@ class Appconfig(QtGui.QWidget): current_project = {"ProjectName":None} #Workspace detail workspace_text = '''ecSim stores your project in a folder called a workspace. You can choose a different workspace folder to use for this session.''' - - + procThread_list = [] def __init__(self): super(Appconfig, self).__init__() -- cgit