summaryrefslogtreecommitdiff
path: root/mat-gui
diff options
context:
space:
mode:
authorjvoisin2012-01-20 18:37:11 +0100
committerjvoisin2012-01-20 18:37:11 +0100
commitaf3e834df39c525717585b60fcd8c7cc9545a29c (patch)
tree78fe539a1b24aa9659e5c5c929c40558b3da60a2 /mat-gui
parent7ac16efeee256947a60b235b73df2871a5cf64a4 (diff)
Fix a critical bug (thanks to omaylorga)
Diffstat (limited to 'mat-gui')
-rwxr-xr-xmat-gui2
1 files changed, 1 insertions, 1 deletions
diff --git a/mat-gui b/mat-gui
index 0c047f7..550cea9 100755
--- a/mat-gui
+++ b/mat-gui
@@ -533,7 +533,7 @@ non-anonymised) file to output archive'))
533 if self.liststore[line][3] != _('Clean (strict)'): 533 if self.liststore[line][3] != _('Clean (strict)'):
534 # if the file is not already strict cleaned 534 # if the file is not already strict cleaned
535 if self.force or not self.liststore[line][0].file.is_clean(): 535 if self.force or not self.liststore[line][0].file.is_clean():
536 if self.liststore[line][0].file.remove_all_ugly(): 536 if self.liststore[line][0].file.remove_all_strict():
537 # if everything went fine 537 # if everything went fine
538 self.liststore[line][3] = _('Clean (strict)') 538 self.liststore[line][3] = _('Clean (strict)')
539 if self.backup: # the backup copy state 539 if self.backup: # the backup copy state