diff options
author | Dan Timoney <dtimoney@att.com> | 2023-06-14 17:10:59 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-06-14 17:10:59 -0400 |
commit | 2ef436968cec5befcc9c91702f8c5bd6d78c6f03 (patch) | |
tree | 9ae4d4621fba55dd89288e215df8ba72245e5abf /plugins/grToolkit/model | |
parent | fa9912503ad15734452a806cef08cc59a1a77498 (diff) |
Convert scripts to python3
Convert python2 scripts to python3
Issue-ID: CCSDK-3906
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Ic7687d020398c416f7b4be55aa7782ac1d4439d4
Diffstat (limited to 'plugins/grToolkit/model')
-rwxr-xr-x | plugins/grToolkit/model/scripts/python/yang2props.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/grToolkit/model/scripts/python/yang2props.py b/plugins/grToolkit/model/scripts/python/yang2props.py index 85daccfbd..6a0b33660 100755 --- a/plugins/grToolkit/model/scripts/python/yang2props.py +++ b/plugins/grToolkit/model/scripts/python/yang2props.py @@ -39,7 +39,7 @@ val = "" li = [] if len(sys.argv) < 3: - print 'yang2props.py <input yang> <output properties>' + print('yang2props.py <input yang> <output properties>') sys.exit(2) with open(sys.argv[1], "r") as ins: |