From f1ed7575ff3be2488a1574b276b91bd787071cd8 Mon Sep 17 00:00:00 2001 From: Leo VIALLON-GALINIER Date: Tue, 22 Jan 2019 22:26:49 +0100 Subject: [PATCH] Correcting bug prevening from saving the deletion of one user --- sauth/json_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sauth/json_backend.py b/sauth/json_backend.py index c8b5b67..d1dc8ad 100644 --- a/sauth/json_backend.py +++ b/sauth/json_backend.py @@ -69,7 +69,7 @@ class JsonBackend: def rm_user(self, username): if username in self._json_users : del self._json_users[username] - self._update_json_roles() + self._update_json() return True return False