In 0.3.3, there is an unexpected message that gets printed to standard output:
HTML report saved to: /tmp/returns.html
The problem is that my script outputs TSV data to stdout, along with calling html() to generate a tearsheet. It expects html() to otherwise be silent. This extra message ends up corrupting the TSV output. Can we go back to the previous behavior of html() not printing any extra output to stdout?
In 0.3.3, there is an unexpected message that gets printed to standard output:
HTML report saved to: /tmp/returns.html
The problem is that my script outputs TSV data to stdout, along with calling
html()
to generate a tearsheet. It expectshtml()
to otherwise be silent. This extra message ends up corrupting the TSV output. Can we go back to the previous behavior ofhtml()
not printing any extra output to stdout?