120 for name in self.reportedStates.keys(): |
120 for name in self.reportedStates.keys(): |
121 if name not in states: |
121 if name not in states: |
122 self.statusList.append(" {0}".format(name)) |
122 self.statusList.append(" {0}".format(name)) |
123 self.reportedStates = states |
123 self.reportedStates = states |
124 |
124 |
125 return True, \ |
125 return ( |
|
126 True, |
126 self.tr("Git status checked successfully") |
127 self.tr("Git status checked successfully") |
|
128 ) |
127 |
129 |
128 def _getInfo(self): |
130 def _getInfo(self): |
129 """ |
131 """ |
130 Protected method implementing the real info action. |
132 Protected method implementing the real info action. |
131 |
133 |