diff options
author | Greg Ward <gward@dyn.com> | 2015-12-09 16:32:57 -0500 |
---|---|---|
committer | Greg Ward <gward@dyn.com> | 2015-12-09 16:33:00 -0500 |
commit | 43c0a1574df2811719e18a020d23dc941c866d34 (patch) | |
tree | 1572863219a3bceb68cabd9e97bf00a07d4947e8 /redis | |
parent | da1378481f963961afab420573eb4130091dd861 (diff) | |
download | redis-py-43c0a1574df2811719e18a020d23dc941c866d34.tar.gz |
Fix typo in comment.
Diffstat (limited to 'redis')
-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: |