From a8f6cb31a056bf779a7c55c1e326b0652dad5f3d Mon Sep 17 00:00:00 2001 From: blacktwin Date: Fri, 26 Jan 2018 09:18:40 -0500 Subject: [PATCH] Update kill_more_than.py --- killstream/kill_more_than.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/killstream/kill_more_than.py b/killstream/kill_more_than.py index 0035997..d07456d 100644 --- a/killstream/kill_more_than.py +++ b/killstream/kill_more_than.py @@ -48,7 +48,7 @@ def kill_session(user, ip_address, session_key): if username == user and address == ip_address: user_sessions.append((session)) - if len(user_sessions) == 1: + if len(user_sessions) > 1: for session in user_sessions: if session_key == session.sessionKey: title = (session.grandparentTitle + ' - ' if session.type == 'episode' else '') + session.title