lynxis lazus has uploaded this change for review. (
https://gerrit.osmocom.org/c/pysim/+/42066?usp=email )
Change subject: pySim/global_platform: replace deprecated argument group()
creation
......................................................................
pySim/global_platform: replace deprecated argument group() creation
The global platform code used
install_cap_parser.add_mutually_exclusive_group().add_argument_group()
But calling add_argument_group() on an exclusive group was never an intended
feature nor
according to python docs was a working feature.
Change-Id: I4f73d3417a12b7fe94e33a265cdae244f3c9a1e9
---
M pySim/global_platform/__init__.py
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/66/42066/1
diff --git a/pySim/global_platform/__init__.py
b/pySim/global_platform/__init__.py
index 8a99677..7040581 100644
--- a/pySim/global_platform/__init__.py
+++ b/pySim/global_platform/__init__.py
@@ -865,7 +865,7 @@
install_cap_parser_inst_prm_g =
install_cap_parser.add_mutually_exclusive_group()
install_cap_parser_inst_prm_g.add_argument('--install-parameters',
type=is_hexstr, default=None,
help='install Parameters
(GPC_SPE_034, section 11.5.2.3.7, table 11-49)')
- install_cap_parser_inst_prm_g_grp =
install_cap_parser_inst_prm_g.add_argument_group()
+ install_cap_parser_inst_prm_g_grp =
install_cap_parser.add_argument_group()
install_cap_parser_inst_prm_g_grp.add_argument('--install-parameters-volatile-memory-quota',
type=int, default=None,
help='volatile memory
quota (GPC_SPE_034, section 11.5.2.3.7, table 11-49)')
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/42066?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I4f73d3417a12b7fe94e33a265cdae244f3c9a1e9
Gerrit-Change-Number: 42066
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus <[email protected]>