diff options
Diffstat (limited to 'redis/client.py')
-rw-r--r-- | redis/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py index 152c75c..5c8cc19 100644 --- a/redis/client.py +++ b/redis/client.py @@ -1766,7 +1766,7 @@ class Script(object): # make sure the Redis server knows about the script if isinstance(client, BasePipeline): # make sure this script is good to go on pipeline - client.script_load_for_pipeline(self.script) + client.script_load_for_pipeline(self) try: return client.evalsha(self.sha, len(keys), *args) except NoScriptError: |