src/eric7/Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py

branch
eric7
changeset 11006
a671918232f3
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
11005:b918c6c2736b 11006:a671918232f3
61 # find the root of the repo 61 # find the root of the repo
62 repodir = self.__vcs.findRepoRoot(projectDir) 62 repodir = self.__vcs.findRepoRoot(projectDir)
63 if not repodir: 63 if not repodir:
64 return 64 return
65 65
66 dlg = GitPatchFilesDialog(repodir, patchCheckData) 66 dlg = GitPatchFilesDialog(repodir, patchCheckData, parent=self)
67 if dlg.exec() == QDialog.DialogCode.Accepted: 67 if dlg.exec() == QDialog.DialogCode.Accepted:
68 patchFilesList, stripCount, inaccurateEof, recount = dlg.getData() 68 patchFilesList, stripCount, inaccurateEof, recount = dlg.getData()
69 self.__patchCheckData = (patchFilesList, stripCount, inaccurateEof, recount) 69 self.__patchCheckData = (patchFilesList, stripCount, inaccurateEof, recount)
70 if patchFilesList: 70 if patchFilesList:
71 process = QProcess() 71 process = QProcess()

eric ide

mercurial