From 21e35874e7d6e829a8093fc720ec4cf51020b79e Mon Sep 17 00:00:00 2001 From: David Lord Date: Thu, 15 Apr 2021 15:21:08 -0700 Subject: [PATCH] mention click in deprecation message --- src/click/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/click/utils.py b/src/click/utils.py index 114afcc3c..6044ab795 100644 --- a/src/click/utils.py +++ b/src/click/utils.py @@ -345,14 +345,14 @@ def get_os_args(): value which is the name of the script. .. deprecated:: 8.0 - Will be removed in 8.1. Access ``sys.argv[1:]`` directly + Will be removed in Click 8.1. Access ``sys.argv[1:]`` directly instead. """ import warnings warnings.warn( - "'get_os_args' is deprecated and will be removed in 8.1. Access" - " 'sys.argv[1:]' directly instead.", + "'get_os_args' is deprecated and will be removed in Click 8.1." + " Access 'sys.argv[1:]' directly instead.", DeprecationWarning, stacklevel=2, )