summaryrefslogtreecommitdiff
path: root/redis/_compat.py
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2013-04-27 11:37:30 -0700
committerandy <andy@whiskeymedia.com>2013-04-27 11:37:30 -0700
commitace00e093bdf77857e62b9bcef3b66f74d1a5604 (patch)
tree7c709a8235be1bec36999e901607fb1a03f110f8 /redis/_compat.py
parent709e7cd2b59d70a8e24fd31b798c02af5602e08d (diff)
downloadredis-py-ace00e093bdf77857e62b9bcef3b66f74d1a5604.tar.gz
pep8
Diffstat (limited to 'redis/_compat.py')
-rw-r--r--redis/_compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/_compat.py b/redis/_compat.py
index 2f7cafa..9d59742 100644
--- a/redis/_compat.py
+++ b/redis/_compat.py
@@ -61,7 +61,7 @@ except ImportError:
# methods to aid implementating different queue organisations.
class LifoQueue(Queue):
- """Override queue methods to implement a last-in first-out queue."""
+ "Override queue methods to implement a last-in first-out queue."
def _init(self, maxsize):
self.maxsize = maxsize