Plugins/VcsPlugins/vcsSubversion/SvnDialog.py

branch
5_0_x
changeset 879
f13be7b268e9
parent 792
a13346916170
equal deleted inserted replaced
876:e21d70cf933c 879:f13be7b268e9
162 self.resultbox.insertPlainText(s) 162 self.resultbox.insertPlainText(s)
163 self.resultbox.ensureCursorVisible() 163 self.resultbox.ensureCursorVisible()
164 if not self.__hasAddOrDelete and len(s) > 0: 164 if not self.__hasAddOrDelete and len(s) > 0:
165 # check the output 165 # check the output
166 for l in s.split(os.linesep): 166 for l in s.split(os.linesep):
167 if l[0].strip() in ['A', 'D']: 167 if l and l[0].strip() in ['A', 'D']:
168 self.__hasAddOrDelete = True 168 self.__hasAddOrDelete = True
169 break 169 break
170 170
171 def __readStderr(self): 171 def __readStderr(self):
172 """ 172 """

eric ide

mercurial