107 "{0} {1}".format(status, name)) |
107 "{0} {1}".format(status, name)) |
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 return True, self.trUtf8( |
112 return True, self.tr( |
113 "Subversion status checked successfully (using svn)") |
113 "Subversion status checked successfully (using svn)") |
114 else: |
114 else: |
115 process.kill() |
115 process.kill() |
116 process.waitForFinished() |
116 process.waitForFinished() |
117 return False, \ |
117 return False, \ |
119 Preferences.getSystem("IOEncoding"), |
119 Preferences.getSystem("IOEncoding"), |
120 'replace') |
120 'replace') |
121 else: |
121 else: |
122 process.kill() |
122 process.kill() |
123 process.waitForFinished() |
123 process.waitForFinished() |
124 return False, self.trUtf8( |
124 return False, self.tr( |
125 "Could not start the Subversion process.") |
125 "Could not start the Subversion process.") |