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
Say,
>>> fsc = FortiSetCommand(" set service 'service tcp 8080-8080 udp 0-0'\n", quote_char='"') >>> fsc.is_consistent False >>> fsc.split_command ['set', 'service', 'service tcp 8080-8080 udp 0-0'] >>> fsc.split_command = fsc.split_command >>> fsc <FortiSetCommand: ' set service "service tcp 8080-8080 udp 0-0"\n'> >>>
This seems weird because
fsc.split_command = fsc.split_command
should not do anything appearantly, but it did.
The text was updated successfully, but these errors were encountered:
May be we can added a attribute "cleaned" to replace the "raw", and "raw" would be left inconsistent state, we use "cleaned" anyway.
Sorry, something went wrong.
No branches or pull requests
Say,
This seems weird because
should not do anything appearantly, but it did.
The text was updated successfully, but these errors were encountered: