replace cleanup-views by couchdb-view-cleanup for all dbs
[mygpo.git] / mygpo / db / couchdb / management / commands / couchdb-view-cleanup.py
blob9a454297b88a850280ffbbf1f8b7bbf0fcdbbc9e
1 from django.core.management.base import BaseCommand
2 from mygpo.db.couchdb.utils import view_cleanup
5 class Command(BaseCommand):
6 """ Sync design docs from filesystem """
8 def handle(self, *args, **options):
10 view_cleanup()