laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/42065?usp=email )
Change subject: saip-tool: rename parser_tree correctly ......................................................................
saip-tool: rename parser_tree correctly
parser_info is already defined and this seems to be a copy/paste accident.
Change-Id: Icc30dbf02a266211fa4d3aee8e7cec14185e716c --- M contrib/saip-tool.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/contrib/saip-tool.py b/contrib/saip-tool.py index 71113d3..a4af001 100755 --- a/contrib/saip-tool.py +++ b/contrib/saip-tool.py @@ -107,7 +107,7 @@ parser_esrv.add_argument('--add-flag', default=[], choices=esrv_flag_choices, action='append', help='Add flag to mandatory services list') parser_esrv.add_argument('--remove-flag', default=[], choices=esrv_flag_choices, action='append', help='Remove flag from mandatory services list')
-parser_info = subparsers.add_parser('tree', help='Display the filesystem tree') +parser_tree = subparsers.add_parser('tree', help='Display the filesystem tree')
def write_pes(pes: ProfileElementSequence, output_file:str): """write the PE sequence to a file"""