From a792ecd0252197f7e54bf71d0b1a2f6c3f539da1 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 10 Jan 2017 15:10:17 -0800 Subject: [PATCH] contrib_bots: Fix lint error in rate limiting code. --- contrib_bots/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib_bots/run.py b/contrib_bots/run.py index b5c643d..05fab04 100755 --- a/contrib_bots/run.py +++ b/contrib_bots/run.py @@ -50,8 +50,8 @@ class RestrictedClient(object): self.client.send_message(*args, **kwargs) else: logging.error('-----> !*!*!*MESSAGE RATE LIMIT REACHED, EXITING*!*!*! <-----\n' - 'Is your bot trapped in an infinite loop by reacting to' - ' its own messages?') + 'Is your bot trapped in an infinite loop by reacting to' + ' its own messages?') sys.exit(1) def get_lib_module(lib_fn):