From dd6b0fdfbd82b6f04f9bf86e2408382963b22b58 Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 24 Jun 2019 18:18:42 +0100 Subject: [PATCH] set git_webhooks _name to something nicer ("Webhooks") --- modules/git_webhooks/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/git_webhooks/__init__.py b/modules/git_webhooks/__init__.py index 8ca1ae22..6ca058ff 100644 --- a/modules/git_webhooks/__init__.py +++ b/modules/git_webhooks/__init__.py @@ -18,6 +18,8 @@ DEFAULT_EVENT_CATEGORIES = [ "help": "Hide/show command-like prefix on git webhook outputs", "validate": utils.bool_or_none, "example": "on"}) class Module(ModuleManager.BaseModule): + _name = "Webhooks" + def on_load(self): self._github = github.GitHub() self._gitea = gitea.Gitea()