python-hl7
python-hl7 copied to clipboard
fixed --quiet cli option bug
The --quiet option for the CLI doesn't do anything. The action was "store_true" with a default of true which means even if you add the --quiet option it still prints ACKs to the stdout. I have changed the action to "store_false" so now when you use --quiet it doesn't print the ACKs anymore.