eric6/Plugins/VcsPlugins/vcsGit/git.py

changeset 7034
ca42317bb307
parent 6942
2602857055c5
child 7167
b3557e77314a
equal deleted inserted replaced
7033:39b9e66ddbd6 7034:ca42317bb307
107 107
108 self.__commitData = {} 108 self.__commitData = {}
109 self.__commitDialog = None 109 self.__commitDialog = None
110 110
111 self.__patchCheckData = None 111 self.__patchCheckData = None
112
113 self.__projectHelper = None
112 114
113 def getPlugin(self): 115 def getPlugin(self):
114 """ 116 """
115 Public method to get a reference to the plugin object. 117 Public method to get a reference to the plugin object.
116 118
156 self.patchStatisticsDialog.close() 158 self.patchStatisticsDialog.close()
157 if self.submoduleStatusDialog is not None: 159 if self.submoduleStatusDialog is not None:
158 self.submoduleStatusDialog.close() 160 self.submoduleStatusDialog.close()
159 161
160 # shut down the project helpers 162 # shut down the project helpers
161 self.__projectHelper.shutdown() 163 if self.__projectHelper is not None:
164 self.__projectHelper.shutdown()
162 165
163 def initCommand(self, command): 166 def initCommand(self, command):
164 """ 167 """
165 Public method to initialize a command arguments list. 168 Public method to initialize a command arguments list.
166 169

eric ide

mercurial