Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py

branch
5_1_x
changeset 1285
544520790fdd
parent 1072
e7b0d18b1121
child 1286
2f118d4d9c5c
equal deleted inserted replaced
1281:80a974cf4f14 1285:544520790fdd
1033 1033
1034 def __hgUnbundle(self): 1034 def __hgUnbundle(self):
1035 """ 1035 """
1036 Protected slot used to apply changegroup files. 1036 Protected slot used to apply changegroup files.
1037 """ 1037 """
1038 self.vcs.hgUnbundle(self.project.ppath) 1038 shouldReopen = self.vcs.hgUnbundle(self.project.ppath)
1039 if shouldReopen:
1040 res = E5MessageBox.yesNo(self.parent(),
1041 self.trUtf8("Unbundle"),
1042 self.trUtf8("""The project should be reread. Do this now?"""),
1043 yesDefault=True)
1044 if res:
1045 self.project.reopenProject()
1039 1046
1040 def __hgBisectGood(self): 1047 def __hgBisectGood(self):
1041 """ 1048 """
1042 Protected slot used to execute the bisect --good command. 1049 Protected slot used to execute the bisect --good command.
1043 """ 1050 """

eric ide

mercurial