We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While working on an azure CLI application I noticed some problems parsing (escaped) json and I've traced the problem back to Knack.
In short, with a nonspecific program based on Knack. The following launch params
python .\testknack.py -b '\"a long string\"' --debug
Results in:
Command arguments: ['-b', '{"a', 'long', 'string"}', '--debug']
As you can see, each word in the second argument gets parsed as a separate argument. This doesn't seem right, does it?
I'm using powershell on windows 10 by the way.
Cheers, Jurgyy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While working on an azure CLI application I noticed some problems parsing (escaped) json and I've traced the problem back to Knack.
In short, with a nonspecific program based on Knack. The following launch params
Results in:
As you can see, each word in the second argument gets parsed as a separate argument. This doesn't seem right, does it?
I'm using powershell on windows 10 by the way.
Cheers,
Jurgyy
The text was updated successfully, but these errors were encountered: