7758:dd54d33d21d2 | 7759:51aa6c6b66f7 |
---|---|
838 self.tr( | 838 self.tr( |
839 "Do you really want to remove these files" | 839 "Do you really want to remove these files" |
840 " from the repository?"), | 840 " from the repository?"), |
841 files) | 841 files) |
842 | 842 |
843 if dlg.exec_() == QDialog.Accepted: | 843 if dlg.exec() == QDialog.Accepted: |
844 self.vcs.hgForget(names) | 844 self.vcs.hgForget(names) |
845 | 845 |
846 for fn in names: | 846 for fn in names: |
847 self._updateVCSStatus(fn) | 847 self._updateVCSStatus(fn) |
848 | 848 |