diff --git a/redis/commands.py b/redis/commands.py index eb7cea54f6..a5c785a3aa 100644 --- a/redis/commands.py +++ b/redis/commands.py @@ -355,6 +355,7 @@ def client_list(self, _type=None, client_id=[]): If type of client specified, only that type will be returned. :param _type: optional. one of the client types (normal, master, replica, pubsub) + :param client_id: optional. a list of client ids """ "Returns a list of currently connected clients" args = [] @@ -2189,7 +2190,7 @@ def xtrim(self, name, maxlen=None, approximate=True, minid=None, """ pieces = [] if maxlen is not None and minid is not None: - raise DataError("Only one of ```maxlen``` or ```minid```", + raise DataError("Only one of ``maxlen`` or ``minid`` " "may be specified") if maxlen is not None: