Reword deprecation warning for dream.py

- this plus previous commit closes #1087
This commit is contained in:
db3000 2022-10-13 08:28:08 -04:00 committed by Lincoln Stein
parent 82b7c118c4
commit 1ea541baa6

View File

@ -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()