From 1ea541baa6ba190e4a9ca9bce0ae4f09f8a6d473 Mon Sep 17 00:00:00 2001 From: db3000 Date: Thu, 13 Oct 2022 08:28:08 -0400 Subject: [PATCH] Reword deprecation warning for dream.py - this plus previous commit closes #1087 --- scripts/dream.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dream.py b/scripts/dream.py index 6a3483757c..fd86e8edc1 100644 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -5,6 +5,7 @@ import warnings import invoke if __name__ == '__main__': - warnings.warn("dream.py is deprecated, please run invoke.py instead", + warnings.warn("dream.py is being deprecated, please run invoke.py for the " + "new UI/API or legacy_api.py for the old API", DeprecationWarning) invoke.main()