Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py

changeset 3034
7ce719013078
parent 3023
34ce20603bf7
child 3060
5883ce99ee12
child 3160
209a07d7e401
equal deleted inserted replaced
3033:58fe260e7469 3034:7ce719013078
246 Private method to process the lines of output. 246 Private method to process the lines of output.
247 247
248 @param line output line to be processed (string) 248 @param line output line to be processed (string)
249 """ 249 """
250 if line.startswith(" "): 250 if line.startswith(" "):
251 l = line.strip().split() 251 li = line.strip().split()
252 changeset = l[-1] 252 changeset = li[-1]
253 del l[-1] 253 del li[-1]
254 name = " ".join(l) 254 name = " ".join(li)
255 self.__generateItem(changeset, name) 255 self.__generateItem(changeset, name)
256 256
257 def __readStderr(self): 257 def __readStderr(self):
258 """ 258 """
259 Private slot to handle the readyReadStderr signal. 259 Private slot to handle the readyReadStderr signal.

eric ide

mercurial