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 8f01500..fe56f1c 100644 --- a/redis/client.py +++ b/redis/client.py @@ -1969,7 +1969,7 @@ class BasePipeline(object): "Execute all the commands in the current pipeline" stack = self.command_stack if not stack: - return + return [] if self.scripts: self.load_scripts() if self.transaction or self.explicit_transaction: |