summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnshul Ranjan <anshul14ranjan@gmail.com>2013-10-25 13:28:30 +0530
committerAnshul Ranjan <anshul14ranjan@gmail.com>2013-10-25 13:28:30 +0530
commit429425bccd8dbb772af9522210d38616d691d45a (patch)
treea53d5d75a770a4823156da5fa1962c68ba12a1d5
parent6b6012f3188891b22fa753fd08d6e02c805dfcc8 (diff)
downloadredis-py-429425bccd8dbb772af9522210d38616d691d45a.tar.gz
Fixed indentation to 4 spaces
-rw-r--r--redis/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/connection.py b/redis/connection.py
index 29306ae..ca7f9ea 100644
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -110,7 +110,7 @@ class PythonParser(object):
byte, response = byte_to_chr(response[0]), response[1:]
if byte not in ('-', '+', ':', '$', '*'):
- raise InvalidResponse("Protocol Error: %s, %s" % (str(byte), str(response)))
+ raise InvalidResponse("Protocol Error: %s, %s" % (str(byte), str(response)))
# server returned an error
if byte == '-':