Show an error when a user specifies an unknown subcommand to !ghwebhook (github)

This commit is contained in:
jesopo 2019-01-18 14:21:53 +00:00
parent 3d2c11991e
commit 1753329aaf

View file

@ -193,6 +193,9 @@ class Module(ModuleManager.BaseModule):
all_hooks[existing_hook]["events"] = new_events
event["target"].set_setting("github-hooks", all_hooks)
event["stdout"].write("Updated events for hook %s" % hook)
else:
event["stderr"].write("Unknown command '%s'" %
event["args_split"][0])
@utils.hook("api.post.github")
def webhook(self, event):