Is there any news?

I've created a small patch to fix this bug. See my attachments.

To use it, download my patch in /tmp/speedtest-cli.patch and run:


sudo patch /usr/lib/python3/dist-packages/speedtest.py \
  /tmp/speedtest-cli.patch


You can also manually fix it applying this change:

https://github.com/sivel/speedtest-cli/commit/cadc68b5aef20f28648072cf07a8f155639b81dd#diff-561d5175f923c2ffd7764768f8e3cd6e1fdb41806bf1b0e4da699ab21bb31930


Cheers

-- 
Valerio Bozzolan


E-mail sent from Evolution from a random GNU/Linux distribution,
delivered from my Postfix mailserver.

Have fun with software freedom!
1173,1175c1173,1175
<         ignore_servers = list(
<             map(int, server_config['ignoreids'].split(','))
<         )
---
>         ignore_servers = [
>             int(i) for i in server_config['ignoreids'].split(',') if i
>         ]

Reply via email to