eric6/Plugins/VcsPlugins/vcsGit/GitDialog.py

changeset 8047
b5594178c7fa
parent 7923
91e843545d9a
child 8142
43248bafe9b2
child 8143
2c730d5fd177
equal deleted inserted replaced
8045:4d5209dc6eb4 8047:b5594178c7fa
218 self.resultbox.ensureCursorVisible() 218 self.resultbox.ensureCursorVisible()
219 219
220 # check for a changed project file 220 # check for a changed project file
221 if self.__updateCommand: 221 if self.__updateCommand:
222 for line in out.splitlines(): 222 for line in out.splitlines():
223 if '.e4p' in line or '.e6p' in line: 223 if (
224 '.epj' in line or
225 '.e4p' in line
226 ):
224 self.__hasAddOrDelete = True 227 self.__hasAddOrDelete = True
225 break 228 break
226 229
227 QCoreApplication.processEvents() 230 QCoreApplication.processEvents()
228 231

eric ide

mercurial