diff options
author | 2021-07-18 20:53:08 +0100 | |
---|---|---|
committer | 2021-07-18 20:53:08 +0100 | |
commit | 67b06959f27a8e0cf1f7c562c16be51a008d7b41 (patch) | |
tree | 2ecfe179a95fca64923914ddc2389cca28c731aa /arthur/exts/kubernetes/deployments.py | |
parent | docs: fix copied docstring (diff) |
fix: fix redeploy confirmation timeout
Diffstat (limited to 'arthur/exts/kubernetes/deployments.py')
-rw-r--r-- | arthur/exts/kubernetes/deployments.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/exts/kubernetes/deployments.py b/arthur/exts/kubernetes/deployments.py index a01f4f6..92deacc 100644 --- a/arthur/exts/kubernetes/deployments.py +++ b/arthur/exts/kubernetes/deployments.py @@ -110,12 +110,12 @@ class Deployments(commands.Cog): timeout=30, ) except asyncio.TimeoutError: - await msg.edit( + return await msg.edit( embed=Embed( title="What is the airspeed velocity of an unladen swallow?", description=( "Whatever the answer may be, it's certainly " - "faster than you could select a confirmation option.", + "faster than you could select a confirmation option." ), colour=Colour.greyple(), ), |