Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py

branch
Py2 comp.
changeset 3060
5883ce99ee12
parent 3058
0a02c433f52d
parent 3034
7ce719013078
child 3145
a9de05d4a22f
equal deleted inserted replaced
3058:0a02c433f52d 3060:5883ce99ee12
252 Private method to process the lines of output. 252 Private method to process the lines of output.
253 253
254 @param line output line to be processed (string) 254 @param line output line to be processed (string)
255 """ 255 """
256 if line.startswith(" "): 256 if line.startswith(" "):
257 l = line.strip().split() 257 li = line.strip().split()
258 changeset = l[-1] 258 changeset = li[-1]
259 del l[-1] 259 del li[-1]
260 name = " ".join(l) 260 name = " ".join(li)
261 self.__generateItem(changeset, name) 261 self.__generateItem(changeset, name)
262 262
263 def __readStderr(self): 263 def __readStderr(self):
264 """ 264 """
265 Private slot to handle the readyReadStderr signal. 265 Private slot to handle the readyReadStderr signal.

eric ide

mercurial