From 5cfeb4c3f21bf704aa43890b1ec041285aef883f Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Sat, 12 Sep 2020 16:22:48 +0200 Subject: [PATCH] Add delta to stats --- cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.py b/cron.py index 20cc0c85..3d49dc57 100644 --- a/cron.py +++ b/cron.py @@ -237,7 +237,7 @@ def increase_percent(old, new) -> str: return "N/A" increase = (new - old) / old * 100 - return f"{increase:.1f}%" + return f"{increase:.1f}%. Delta: {new-old}" def stats():