From 7d2e3dd337eea06f4b999a37aa19267358e6f58a Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 7 Apr 2019 12:40:33 +0200 Subject: [PATCH] Fix poussetaches client --- poussetaches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poussetaches.py b/poussetaches.py index cabf5ca..7909416 100644 --- a/poussetaches.py +++ b/poussetaches.py @@ -74,7 +74,7 @@ class PousseTaches: t["next_run"] = datetime.fromtimestamp(float(t["next_run"] / 1e9)) if t["last_run"]: - t["last_run"] = datetime.fromtimestamp(float(t["last__run"] / 1e9)) + t["last_run"] = datetime.fromtimestamp(float(t["last_run"] / 1e9)) else: del t["last_run"]