Correcting bug prevening from saving the deletion of one user

This commit is contained in:
Léo 2019-01-22 22:26:49 +01:00
parent f8be6bf3fe
commit f1ed7575ff

View File

@ -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