src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py

branch
eric7
changeset 10373
093dcebe5ecb
parent 10069
435cc5875135
child 10438
4cd7e5a8b3cf
equal deleted inserted replaced
10372:1444b4bee64b 10373:093dcebe5ecb
133 try: 133 try:
134 if self.reportedStates[file.path] != status: 134 if self.reportedStates[file.path] != status:
135 self.statusList.append("{0} {1}".format(status, file.path)) 135 self.statusList.append("{0} {1}".format(status, file.path))
136 except KeyError: 136 except KeyError:
137 self.statusList.append("{0} {1}".format(status, file.path)) 137 self.statusList.append("{0} {1}".format(status, file.path))
138 for name in list(self.reportedStates.keys()): 138 for name in self.reportedStates:
139 if name not in states: 139 if name not in states:
140 self.statusList.append(" {0}".format(name)) 140 self.statusList.append(" {0}".format(name))
141 self.reportedStates = states 141 self.reportedStates = states
142 res = True 142 res = True
143 statusStr = self.tr("Subversion status checked successfully (using pysvn)") 143 statusStr = self.tr("Subversion status checked successfully (using pysvn)")

eric ide

mercurial