Closed mcarpenter closed 5 years ago
Hello, thanks for your comment. You're right about those two things - those changes will be implemented soon.
Thanks! Maybe also output from --verbose
? Otherwise it gets mixed in with the actual output when debugging.
Maybe also output from --verbose? Otherwise it gets mixed in with the actual output when debugging.
Yes, changes were applied also there :)
Resolved with 45a4897bad1af38f62fcf5b8b84226ba539cc006
Two small problems with error messages from vxapi.py:
stdout
.stdout
is not a terminal.The first can be solved by simply writing to
sys.stderr
instead. The second can be solved by callingsys.stdout.isatty()
and acting appropriately on the result.