symposion_app/symposion/reviews/management/commands/calculate_results.py
2014-01-13 16:49:40 -05:00

9 lines
216 B
Python

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