Plugins/VcsPlugins/vcsMercurial/hg.py

changeset 207
3f889378dede
parent 205
e5f10cf7fdc9
child 213
42bb97ff0bbb
equal deleted inserted replaced
206:e24ba21c6d3a 207:3f889378dede
101 self.diff = None 101 self.diff = None
102 self.status = None 102 self.status = None
103 self.tagbranchList = None 103 self.tagbranchList = None
104 self.annotate = None 104 self.annotate = None
105 self.editor = None 105 self.editor = None
106 self.bundleFile = None
106 107
107 self.statusCache = {} 108 self.statusCache = {}
108 109
109 self.__commitData = {} 110 self.__commitData = {}
110 self.__commitDialog = None 111 self.__commitDialog = None
129 self.status.close() 130 self.status.close()
130 if self.tagbranchList is not None: 131 if self.tagbranchList is not None:
131 self.tagbranchList.close() 132 self.tagbranchList.close()
132 if self.annotate is not None: 133 if self.annotate is not None:
133 self.annotate.close() 134 self.annotate.close()
135
136 if self.bundleFile and os.path.exists(self.bundleFile):
137 os.remove(self.bundleFile)
134 138
135 def vcsExists(self): 139 def vcsExists(self):
136 """ 140 """
137 Public method used to test for the presence of the hg executable. 141 Public method used to test for the presence of the hg executable.
138 142

eric ide

mercurial