\xa0 space breaks args parsing
Opened this issue · 0 comments
kindermax commented
Given lets call --host=localhost --level=info
Because of \xa0
space between --host=localhost
and --level=info
it will be parsed into
- call
- --host=localhost --level=info
but must be parsed into
- call
- --host=localhost
- --level=info