eric6/Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py

changeset 8143
2c730d5fd177
parent 7923
91e843545d9a
equal deleted inserted replaced
8141:27f636beebad 8143:2c730d5fd177
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

eric ide

mercurial