From 2c6d842dea81bd734388ece07d501a861efc6270 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Thu, 12 Sep 2024 22:31:50 +0200 Subject: [PATCH] suggest a zsh compatible command line for installing extras. fixes #149 --- locust_plugins/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locust_plugins/__init__.py b/locust_plugins/__init__.py index c6615d9..5823be5 100644 --- a/locust_plugins/__init__.py +++ b/locust_plugins/__init__.py @@ -259,6 +259,6 @@ def do_checks(environment, **_kw): def missing_extra(package, extra): logging.error( - f"'{package}' is not installed by default, you need to install it using 'pip install locust-plugins[{extra}]'" + f"'{package}' is not installed by default, you need to install it using \"pip install 'locust-plugins[{extra}]'\"" ) sys.exit(1)