Reword deprecation warning for dream.py

This commit is contained in:
db3000 2022-10-13 08:28:08 -04:00 committed by Lincoln Stein
parent 203a6d8a00
commit 7f491fd2d2

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