From cef77d2655ec38e2fd56431fb2aefd7add9129bd Mon Sep 17 00:00:00 2001 From: Peng-Yu Chen Date: Fri, 13 Dec 2024 13:22:49 +0100 Subject: [PATCH] Update warning message on installation of msgpack-python (#172) See also 0a422fec --- scrapinghub/hubstorage/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapinghub/hubstorage/client.py b/scrapinghub/hubstorage/client.py index f9e48b53..afe5ef85 100644 --- a/scrapinghub/hubstorage/client.py +++ b/scrapinghub/hubstorage/client.py @@ -90,7 +90,7 @@ def __init__(self, auth=None, endpoint=None, connection_timeout=None, self.use_msgpack = MSGPACK_AVAILABLE and use_msgpack if use_msgpack != self.use_msgpack: logger.warning('Messagepack is not available, please ensure that ' - 'msgpack-python library is properly installed.') + 'msgpack library is properly installed.') def request(self, is_idempotent=False, **kwargs): """