From caba903798d6fa4c5f91c4080aab024873cfe272 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Sat, 18 Jun 2011 16:42:29 -0400 Subject: fixed a typo bug in the add_missing_subscriptions management command --- askbot/management/commands/add_missing_subscriptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/askbot/management/commands/add_missing_subscriptions.py b/askbot/management/commands/add_missing_subscriptions.py index 70b1590e..5bfce24b 100644 --- a/askbot/management/commands/add_missing_subscriptions.py +++ b/askbot/management/commands/add_missing_subscriptions.py @@ -7,6 +7,6 @@ from askbot import forms class Command(NoArgsCommand): @transaction.commit_manually def handle_noargs(self, **options): - for user in User.object.all(): + for user in User.objects.all(): user.add_missing_askbot_subscriptions() transaction.commit() -- cgit v1.2.3-1-g7c22