symposion_app/symposion/reviews/management/commands/calculate_results.py
2012-08-14 03:54:45 -04:00

11 lines
266 B
Python

from django.core.management.base import BaseCommand
from django.contrib.auth.models import Group
from symposion.reviews.models import ProposalResult
class Command(BaseCommand):
def handle(self, *args, **options):
ProposalResult.full_calculate()