]> git.openstreetmap.org Git - osqa.git/blob - forum/management/commands/sample_command.py
OSQA-605, store user logins in a separate action, this helps to easily retrieve the...
[osqa.git] / forum / management / commands / sample_command.py
1 from django.core.management.base import NoArgsCommand
2 from forum.models import Comment
3
4 class Command(NoArgsCommand):
5     def handle_noargs(self, **options):
6         objs = Comment.objects.all()
7         print objs