133 for name in self.reportedStates.keys(): |
133 for name in self.reportedStates.keys(): |
134 if name not in states: |
134 if name not in states: |
135 self.statusList.append(" {0}".format(name)) |
135 self.statusList.append(" {0}".format(name)) |
136 self.reportedStates = states |
136 self.reportedStates = states |
137 |
137 |
138 return True, \ |
138 return ( |
|
139 True, |
139 self.tr("Mercurial status checked successfully") |
140 self.tr("Mercurial status checked successfully") |
|
141 ) |
140 |
142 |
141 def _getInfo(self): |
143 def _getInfo(self): |
142 """ |
144 """ |
143 Protected method implementing the real info action. |
145 Protected method implementing the real info action. |
144 |
146 |