Skip to content

Commit

Permalink
Merge pull request #106 from BrockA/master
Browse files Browse the repository at this point in the history
Clarify to user that none of his previous command was implemented.
  • Loading branch information
normalhuman committed Nov 15, 2015
2 parents bdb5d09 + ac760c3 commit 238b8e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatcommunicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def watcher(ev, wrap2):
ev.message.reply("I don't have any messages posted after the latest reboot.")
return
if len(commands) > len(latest_smokedetector_messages):
ev.message.reply("I've only posted {} messages since the latest reboot; that's not enough to execute all commands.".format(len(latest_smokedetector_messages)))
ev.message.reply("I've only posted {} messages since the latest reboot; that's not enough to execute all commands. No commands were executed.".format(len(latest_smokedetector_messages)))
return
for i in range(0, len(commands)):
shortcut_messages.append(":" + str(latest_smokedetector_messages[-(i + 1)]) + " " + commands[i])
Expand Down

0 comments on commit 238b8e1

Please sign in to comment.