7758:dd54d33d21d2 | 7759:51aa6c6b66f7 |
---|---|
590 self.tr( | 590 self.tr( |
591 "Do you really want to remove these files" | 591 "Do you really want to remove these files" |
592 " from the repository?"), | 592 " from the repository?"), |
593 files) | 593 files) |
594 | 594 |
595 if dlg.exec_() == QDialog.Accepted: | 595 if dlg.exec() == QDialog.Accepted: |
596 self.vcs.vcsRemove(names, stageOnly=True) | 596 self.vcs.vcsRemove(names, stageOnly=True) |
597 | 597 |
598 for fn in names: | 598 for fn in names: |
599 self._updateVCSStatus(fn) | 599 self._updateVCSStatus(fn) |
600 | 600 |