8141:27f636beebad | 8143:2c730d5fd177 |
---|---|
837 self.tr( | 837 self.tr( |
838 "Do you really want to remove these files" | 838 "Do you really want to remove these files" |
839 " from the repository?"), | 839 " from the repository?"), |
840 files) | 840 files) |
841 | 841 |
842 if dlg.exec() == QDialog.Accepted: | 842 if dlg.exec() == QDialog.DialogCode.Accepted: |
843 self.vcs.hgForget(names) | 843 self.vcs.hgForget(names) |
844 | 844 |
845 for fn in names: | 845 for fn in names: |
846 self._updateVCSStatus(fn) | 846 self._updateVCSStatus(fn) |
847 | 847 |