diff options
-rwxr-xr-x | redis/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/client.py b/redis/client.py index e426abe..c7a03b9 100755 --- a/redis/client.py +++ b/redis/client.py @@ -2145,8 +2145,8 @@ class PubSub(object): def execute_command(self, *args, **kwargs): "Execute a publish/subscribe command" - # NOTE: don't parse the response in this function. it could pull a - # legitmate message off the stack if the connection is already + # NOTE: don't parse the response in this function -- it could pull a + # legitimate message off the stack if the connection is already # subscribed to one or more channels if self.connection is None: |