2011-04-15 11:34:41 -04:00
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from apps.statistics.models import MStatistics
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
2012-07-02 10:15:17 -07:00
|
|
|
MStatistics.collect_statistics()
|
2012-09-27 15:21:38 -07:00
|
|
|
|