Closed rADikal8e7 closed 4 years ago
Using Remote-SSH ext on local and python ext 2020.3.62207 on remote. sys.argv is of type unicode. It should have been of type str in python2
repr(sys.argv) "[u'/root/lib/basic_sanity.py', u'-logicaldict', u'logical_dict.yml', u'-build', u'na', u'-skip_dependency']"
It should match the behavior of python ext v:2020.1.58038 and send it as type str.
repr(sys.argv) "['/root/lib/basic_sanity.py', '-logicaldict', 'logical_dict.yml', '-build', 'na', '-skip_dependency']"
Environment data
Actual behavior
Using Remote-SSH ext on local and python ext 2020.3.62207 on remote. sys.argv is of type unicode. It should have been of type str in python2
Expected behavior
It should match the behavior of python ext v:2020.1.58038 and send it as type str.
Steps to reproduce: