mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
10 lines
No EOL
288 B
Python
10 lines
No EOL
288 B
Python
from optparse import make_option
|
|
from django.core.management.base import BaseCommand
|
|
from apps.statistics.models import MFeedback
|
|
|
|
class Command(BaseCommand):
|
|
option_list = BaseCommand.option_list + (
|
|
)
|
|
|
|
def handle(self, *args, **options):
|
|
MFeedback.collect_feedback() |