From c34736f1241556d2e87ac7547ab25cfb7b7a8790 Mon Sep 17 00:00:00 2001 From: Blacktwin Date: Wed, 26 Sep 2018 15:22:11 -0400 Subject: [PATCH] print reason for limit kill --- killstream/limiterr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/killstream/limiterr.py b/killstream/limiterr.py index 2230e20..dd72522 100644 --- a/killstream/limiterr.py +++ b/killstream/limiterr.py @@ -360,6 +360,8 @@ if __name__ == "__main__": sys.exit(1) if ep_watched >= total_limit: + print("{}'s limit is {} and has watched {} episodes of this show today." + .format(opts.username, total_limit, ep_watched)) terminate_session(opts.sessionId, message, opts.notify, opts.username) else: print("{}'s limit is {} but has only watched {} episodes of this show today."