Plugins/VcsPlugins/vcsMercurial/hg.py

changeset 5588
6ba512d9f46a
parent 5587
ea526b78ee6c
child 5593
0f61eae74237
diff -r ea526b78ee6c -r 6ba512d9f46a Plugins/VcsPlugins/vcsMercurial/hg.py
--- a/Plugins/VcsPlugins/vcsMercurial/hg.py	Tue Mar 07 18:53:18 2017 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/hg.py	Tue Mar 07 19:46:57 2017 +0100
@@ -2518,7 +2518,7 @@
             if dlg.exec_() != QDialog.Accepted:
                 return
             
-            revs, baseRevs, compression, all = dlg.getParameters()
+            revs, baseRevs, compression, bundleAll = dlg.getParameters()
         else:
             revs = bundleData["revs"]
             if bundleData["base"]:
@@ -2526,7 +2526,7 @@
             else:
                 baseRevs = []
             compression = ""
-            all = bundleData["all"]
+            bundleAll = bundleData["all"]
         
         fname, selectedFilter = E5FileDialog.getSaveFileNameAndFilter(
             None,
@@ -2558,7 +2558,7 @@
         self.__lastChangeGroupPath = os.path.dirname(fname)
         
         args = self.initCommand("bundle")
-        if all:
+        if bundleAll:
             args.append("--all")
         for rev in revs:
             args.append("--rev")

eric ide

mercurial