summaryrefslogtreecommitdiff
path: root/django/core/cache
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/cache')
-rw-r--r--django/core/cache/backends/dummy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/cache/backends/dummy.py b/django/core/cache/backends/dummy.py
index d1aea0a325..7957df8072 100644
--- a/django/core/cache/backends/dummy.py
+++ b/django/core/cache/backends/dummy.py
@@ -34,7 +34,7 @@ class DummyCache(BaseCache):
return False
def set_many(self, data, timeout=DEFAULT_TIMEOUT, version=None):
- pass
+ return []
def delete_many(self, keys, version=None):
pass