diff options
-rw-r--r-- | arthur/exts/kubernetes/certificates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/exts/kubernetes/certificates.py b/arthur/exts/kubernetes/certificates.py index f8653ba..bb08655 100644 --- a/arthur/exts/kubernetes/certificates.py +++ b/arthur/exts/kubernetes/certificates.py @@ -24,7 +24,7 @@ class Certificates(commands.Cog): @certificates.command(name="list", aliases=["ls"]) async def certificates_list(self, ctx: commands.Context, namespace: str = "default") -> None: """List TLS certificates in the selected namespace (defaults to default).""" - certs = certificates.list_certificates(namespace) + certs = await certificates.list_certificates(namespace) return_embed = Embed(title=f"Certificates in namespace {namespace}") |