Quote:
Originally Posted by mergen3107
I submitted an issue on GitHub.
|
Yes, I was using version 3.3
In version 3.52 they added verbose throughput statistics which broke everything.
In library\firehose.py, line #162 replace the whole function with this:
Code:
def show_progress(self, prefix, pos, total, display=True):
if display:
prog = round(float(pos) / float(total) * float(100), 2)
print_progress(prog, 100, prefix='Progress:', bar_length=50)
It will work. I can't be bothered to make it prettier with this "mplete" stuff.