From 542f58b510b5ad3178c3025aa0fdd59fce028aa0 Mon Sep 17 00:00:00 2001 From: Blacktwin Date: Fri, 7 Dec 2018 10:13:58 -0500 Subject: [PATCH] correct exception message --- utility/remove_inactive_users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility/remove_inactive_users.py b/utility/remove_inactive_users.py index ca58d60..60b8273 100644 --- a/utility/remove_inactive_users.py +++ b/utility/remove_inactive_users.py @@ -69,7 +69,7 @@ def get_users_table(): return [data for data in res_data if data['last_seen']] except Exception as e: - print("Tautulli API 'get_history' request failed: {0}.".format(e)) + print("Tautulli API 'get_users_table' request failed: {0}.".format(e)) def unshare(user):