Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py

changeset 1824
d1e20bfe86cd
parent 1746
6c74208f22a2
child 1906
8487f9c2533b
equal deleted inserted replaced
1823:21d988eaf1bf 1824:d1e20bfe86cd
276 """ 276 """
277 Private method to process the lines of output. 277 Private method to process the lines of output.
278 278
279 @param line output line to be processed (string) 279 @param line output line to be processed (string)
280 """ 280 """
281 if line.startswith("---") or \ 281 if line.startswith("--- ") or \
282 line.startswith("+++"): 282 line.startswith("+++ "):
283 self.__processFileLine(line) 283 self.__processFileLine(line)
284 284
285 if line.startswith('+'): 285 if line.startswith('+'):
286 format = self.cAddedFormat 286 format = self.cAddedFormat
287 elif line.startswith('-'): 287 elif line.startswith('-'):

eric ide

mercurial