contrib_bots: Fix lint error in rate limiting code.

This commit is contained in:
Tim Abbott 2017-01-10 15:10:17 -08:00
parent 3efbadc37b
commit 6d3ea3f663
1 changed files with 2 additions and 2 deletions

View File

@ -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):