src/eric7/Project/ProjectBrowserModel.py

branch
eric7
changeset 10757
7eed48700225
parent 10692
9becf9ca115c
child 10759
aeb98b3fa008
equal deleted inserted replaced
10756:0702be694bc4 10757:7eed48700225
84 Public method to set the VCS status. 84 Public method to set the VCS status.
85 85
86 @param vcsStatus VCS status text 86 @param vcsStatus VCS status text
87 @type str 87 @type str
88 """ 88 """
89 self.itemData[1] = vcsStatus 89 try:
90 self.itemData[1] = vcsStatus
91 except IndexError:
92 self.addVcsStatus(vcsStatus)
90 93
91 def getProjectTypes(self): 94 def getProjectTypes(self):
92 """ 95 """
93 Public method to get the project type. 96 Public method to get the project type.
94 97

eric ide

mercurial