summaryrefslogtreecommitdiffstats
path: root/askbot/management/commands/clear_cache.py
blob: c13213b4abd4471007955c0c9a75d99e918a800c (plain)
1
2
3
4
5
6
from django.core.management.base import NoArgsCommand
from django.core.cache import cache

class Command(NoArgsCommand):
    def handle_noargs(self, *args, **kwargs):
        cache.clear()