diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-03-18 12:49:48 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-03-18 12:49:48 +0200 |
commit | d2677674eec9cebaa0748d8035cc1ac8329444e2 (patch) | |
tree | ea1475c31653ab5b7851d274c85669471aba32e9 /servo | |
parent | f5ae8615a6a53bed91aabbb84276ea891fae9ca7 (diff) | |
download | Servo-d2677674eec9cebaa0748d8035cc1ac8329444e2.tar.gz Servo-d2677674eec9cebaa0748d8035cc1ac8329444e2.tar.bz2 Servo-d2677674eec9cebaa0748d8035cc1ac8329444e2.zip |
Clear ALL caches, not just default
Diffstat (limited to 'servo')
-rw-r--r-- | servo/management/commands/clearcache.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/servo/management/commands/clearcache.py b/servo/management/commands/clearcache.py index 7c00ef4..ce96459 100644 --- a/servo/management/commands/clearcache.py +++ b/servo/management/commands/clearcache.py @@ -1,12 +1,15 @@ # -*- coding: utf-8 -*- -from django.core.cache import cache +from django.core.cache import caches from django.core.management.base import BaseCommand class Command(BaseCommand): - help = "Clears this install's cache" + help = "Clears this install's caches" def handle(self, *args, **options): - cache.clear() + for c in caches.all(): + c.clear() + + exit(0) |