summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xredis/client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index f06c9ff..5f252e4 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -669,7 +669,8 @@ class StrictRedis(object):
return self.parse_response(connection, command_name, **options)
except (ConnectionError, TimeoutError) as e:
connection.disconnect()
- if (not connection.retry_on_timeout and isinstance(e, TimeoutError)):
+ if (not connection.retry_on_timeout and
+ isinstance(e, TimeoutError)):
raise
connection.send_command(*args)
return self.parse_response(connection, command_name, **options)