From b88e53307a8598554367a72698b4fdb332cc7cb9 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 31 Dec 2020 10:16:27 -0700 Subject: [PATCH] Rework message given when bootstrapping the turbot table This provides a little more information, (such as that a user should wait a minute before retrying), and is a little more polite, (saying "please"). --- turbot/interaction.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/turbot/interaction.py b/turbot/interaction.py index 8fdebae..62199eb 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -149,8 +149,9 @@ def new_hunt_submission(turb, payload, metadata): } ] ) - return submission_error("hunt_id", - "Still bootstrapping turbot table. Try again.") + return submission_error( + "hunt_id", + "Still bootstrapping turbot table. Try again in a minute, please.") # Create a channel for the hunt try: -- 2.43.0