diff --git a/daily_speedtest/daily_speedtest.py b/daily_speedtest/daily_speedtest.py index a447e68..3d0de2a 100644 --- a/daily_speedtest/daily_speedtest.py +++ b/daily_speedtest/daily_speedtest.py @@ -34,7 +34,7 @@ def run_speedtest(): down = '{:.2f}'.format(speedtest.results.download / 1000 / 1000) up = '{:.2f}'.format(speedtest.results.upload / 1000 / 1000) latency = int(speedtest.results.ping) - results_text = f'{down}Mbps Down / {up}Mbps Up/ {latency}ms' + results_text = f'{down}Mbps Down / {up}Mbps Up / {latency}ms' cp.log(results_text) cp.put(results_field, results_text) # Optional Alert