diff options
| author | jvoisin | 2014-01-21 12:33:03 +0000 |
|---|---|---|
| committer | jvoisin | 2014-01-21 12:33:03 +0000 |
| commit | a1638966e6a36f377664a2ef3092cfaf37de4708 (patch) | |
| tree | d8031fc9495550fbd95e4ea7b6df843b5524a763 /mat-gui | |
| parent | 83ebcc54bca4d3eaf52d47e55c9dcc8be15096a6 (diff) | |
Mat-gui now displays "Cleaning $ilename" instead of "Cleaning $state"
Fix https://labs.riseup.net/code/issues/6618
Diffstat (limited to 'mat-gui')
| -rwxr-xr-x | mat-gui | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -406,7 +406,7 @@ non-anonymised) file to output archive')) | |||
| 406 | def __mat_clean(self, iterator): | 406 | def __mat_clean(self, iterator): |
| 407 | ''' Clean elements in iterator ''' | 407 | ''' Clean elements in iterator ''' |
| 408 | for line in iterator: # for each file in selection | 408 | for line in iterator: # for each file in selection |
| 409 | msg = _('Cleaning %s') % self.liststore[line][2].decode('utf-8', 'replace') | 409 | msg = _('Cleaning %s') % self.liststore[line][1].decode('utf-8', 'replace') |
| 410 | logging.info(msg) | 410 | logging.info(msg) |
| 411 | self.statusbar.push(0, msg) | 411 | self.statusbar.push(0, msg) |
| 412 | if isinstance(self.liststore[line][0].file, archive.GenericArchiveStripper): | 412 | if isinstance(self.liststore[line][0].file, archive.GenericArchiveStripper): |
