eric6/Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py

changeset 7759
51aa6c6b66f7
parent 7533
88261c96484b
child 7780
41420f82c0ac
equal deleted inserted replaced
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

eric ide

mercurial