Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py

changeset 3190
a9a94491c4fd
parent 3160
209a07d7e401
child 3484
645c12de6b0c
equal deleted inserted replaced
3189:9a21c547de5f 3190:a9a94491c4fd
108 for name in list(self.reportedStates.keys()): 108 for name in list(self.reportedStates.keys()):
109 if name not in states: 109 if name not in states:
110 self.statusList.append(" {0}".format(name)) 110 self.statusList.append(" {0}".format(name))
111 self.reportedStates = states 111 self.reportedStates = states
112 res = True 112 res = True
113 statusStr = self.trUtf8( 113 statusStr = self.tr(
114 "Subversion status checked successfully (using pysvn)") 114 "Subversion status checked successfully (using pysvn)")
115 except pysvn.ClientError as e: 115 except pysvn.ClientError as e:
116 res = False 116 res = False
117 statusStr = e.args[0] 117 statusStr = e.args[0]
118 os.chdir(cwd) 118 os.chdir(cwd)

eric ide

mercurial