Browse Source

minor text fixes

bluehood 7 years ago
parent
commit
c8551c34e7
1 changed files with 13 additions and 13 deletions
  1. 13 13
      handlers.py

+ 13 - 13
handlers.py

@@ -6,38 +6,38 @@ from insults import insults
 
 
 def ping(bot, update):
-    """ Check LCM ping response """
+    """Check LCM ping response"""
     try:
         sp.check_output(['ping', '-c', '1', 'lcm.mi.infn.it'])
     except CalledProcessError, e:
-        bot.sendMessage(chat_id=update.message.chat_id,
+        bot.send_message(chat_id=update.message.chat_id,
                         text='LCM is unreachable')
-    bot.sendMessage(chat_id=update.message.chat_id,
+    bot.send_message(chat_id=update.message.chat_id,
                     text='LCM is reachable')
 
 
 def is_web_up(bot, update):
-    """ Check LCM http response """
+    """Check LCM http response"""
     try:
         conn = httplib.HTTPConnection('lcm.mi.infn.it:443')
         conn.request('HEAD', '/')
         s = conn.getresponse().status
-        bot.sendMessage(chat_id=update.message.chat_id,
+        bot.send_message(chat_id=update.message.chat_id,
                         text='Web server replied with code %s ' % s)
     except StandardError:
-        bot.sendMessage(chat_id=update.message.chat_id,
+        bot.send_message(chat_id=update.message.chat_id,
                         text='An error occurred while connecting')
 
 
 def vietnam(bot, update):
-    """ Spout wise words """
-    bot.sendMessage(chat_id=update.message.chat_id,
+    """Spout wise words"""
+    bot.send_message(chat_id=update.message.chat_id,
                     text='Ricordate, ragazzi, LCM è come il Vietnam. Una volta \
 entrati, è impossibile uscirne!')
 
 
 def sell_your_mother(bot, update):
-    """ Remind people not to disclose passwords """
+    """Remind people not to disclose passwords"""
     pic_id = 'AgADBAADbasxG9JPlAQNlEW3ML5sk_bEXxkABHKAFZ1ZzBZsNvMBAAEC'
     bot.sendPhoto(chat_id=update.message.chat_id, photo=pic_id,
                   caption='cit. Mandelli')
@@ -52,16 +52,16 @@ Clona il mio repo e insegnamene qualcuna!' ]
 
 
 def print_msg_info(bot, update):
-    """ Print all message info to console - useful for debugging purposes """
+    """Print all message info to console - useful for debugging purposes"""
     print update.message
 
 
 def error(bot, update, error):
-    """ Log errors """
+    """Log errors"""
     logger.warn('Update "%s" caused error "%s"' % (update, error))
 
 
 def abuse_150(bot, update):
-    """ Verbally abuse incompetent LCM collaborators """
+    """Verbally abuse incompetent LCM collaborators"""
     insult = np.random.choice(insults)
-    bot.sendMessage(chat_id=update.message.chat_id, text=insult)
+    bot.send_message(chat_id=update.message.chat_id, text=insult)