587 self.tr( |
587 self.tr( |
588 "Do you really want to remove these files" |
588 "Do you really want to remove these files" |
589 " from the repository?"), |
589 " from the repository?"), |
590 files) |
590 files) |
591 |
591 |
592 if dlg.exec() == QDialog.Accepted: |
592 if dlg.exec() == QDialog.DialogCode.Accepted: |
593 self.vcs.vcsRemove(names, stageOnly=True) |
593 self.vcs.vcsRemove(names, stageOnly=True) |
594 |
594 |
595 for fn in names: |
595 for fn in names: |
596 self._updateVCSStatus(fn) |
596 self._updateVCSStatus(fn) |
597 |
597 |