summaryrefslogtreecommitdiffstats
path: root/askbot/management/commands/sample_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/management/commands/sample_command.py')
-rw-r--r--askbot/management/commands/sample_command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/askbot/management/commands/sample_command.py b/askbot/management/commands/sample_command.py
index bcdcb58e..40debe63 100644
--- a/askbot/management/commands/sample_command.py
+++ b/askbot/management/commands/sample_command.py
@@ -1,7 +1,7 @@
from django.core.management.base import NoArgsCommand
-from askbot.models import Comment
+from askbot.models import Post
class Command(NoArgsCommand):
def handle_noargs(self, **options):
- objs = Comment.objects.all()
- print objs \ No newline at end of file
+ objs = Post.objects.all()
+ print objs