From 316616f02a2e008f76694cb7c082ca6382a1b606 Mon Sep 17 00:00:00 2001 From: Blacktwin Date: Fri, 7 Dec 2018 12:44:59 -0500 Subject: [PATCH] spelling fix. --- 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 9b52db5..d4d6592 100644 --- a/utility/remove_inactive_users.py +++ b/utility/remove_inactive_users.py @@ -129,7 +129,7 @@ def main(): print('{} was last seen {} days ago. Removing.'.format(username, last_seen)) remove_friend(username) elif last_seen > UNSHARE_LIMIT: - print('{} was last seen {} days ago. Unshsring.'.format(username, last_seen)) + print('{} was last seen {} days ago. Unsharing.'.format(username, last_seen)) unshare(username) else: last_entry(last_seen, username)