From a5ecc248c48a9d75db2b4998c7888f4889cd0c8b Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Tue, 26 Dec 2023 15:29:46 -0500 Subject: [PATCH] fixed --- brewtils/auto_decorator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brewtils/auto_decorator.py b/brewtils/auto_decorator.py index 47c9492d..b4fc7f64 100644 --- a/brewtils/auto_decorator.py +++ b/brewtils/auto_decorator.py @@ -27,7 +27,7 @@ def addFunctions(self, client): _wrapped = getattr(client, func) if not hasattr(_wrapped, "_command") and not func.startswith("__"): # decorators.py will handle all of the markings - if not func.startswith("_"): + if func.startswith("_"): _wrapped._command = Command(hidden=True) else: _wrapped._command = Command()