From 93c814a32f870d1ded9b86052aff2e0a84d634ca Mon Sep 17 00:00:00 2001 From: prryplatypus <25409753+prryplatypus@users.noreply.github.com> Date: Sat, 9 Oct 2021 19:43:38 +0200 Subject: [PATCH] Tweaked warning message --- sanic/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sanic/app.py b/sanic/app.py index 26379f6a..a433ad91 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -218,7 +218,8 @@ class Sanic(BaseSanic, metaclass=TouchUpMeta): "installed in your system. In order to use uvloop " "you must first install it. Otherwise, you can disable " "uvloop completely by setting the 'USE_UVLOOP' configuration " - "value to false. The app will now run without uvloop." + "value to false. The app will now continue to run without " + "using uvloop." ) # uvloop requested and installed, but opted-out during install