Skip to content
Snippets Groups Projects
Commit 830bdcdc authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix typo

parent 69b35523
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,8 @@ def register_handlers(bot):
return
if not is_shifter(user):
bot.send_message(
"Only shifters are allowed to mess with me, sorry...")
"Only shifters are allowed to mess with me, sorry...",
channel_id)
return
status = subprocess.check_output(['supervisorctl', 'status'])
bot.send_message(status, channel_id)
......@@ -86,7 +87,8 @@ def register_handlers(bot):
print("skipping")
return
if not is_operator(user):
bot.send_message("Only operators are allowed to set shifters!")
bot.send_message("Only operators are allowed to set shifters!",
channel_id)
return
try:
with open(CONFIG, 'r') as fobj:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment