From 9dae1e2d59631332e6484ed9d0851c6fc4cbe348 Mon Sep 17 00:00:00 2001 From: Charles Holbrow Date: Mon, 25 Mar 2013 19:56:35 -0400 Subject: [PATCH] fixing typo in slug regen manage command --- karmaworld/apps/notes/management/commands/regen_note_slugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karmaworld/apps/notes/management/commands/regen_note_slugs.py b/karmaworld/apps/notes/management/commands/regen_note_slugs.py index 56b801a..4dc03ca 100644 --- a/karmaworld/apps/notes/management/commands/regen_note_slugs.py +++ b/karmaworld/apps/notes/management/commands/regen_note_slugs.py @@ -10,7 +10,7 @@ class Command(BaseCommand): help = "regenerate all note slugs" def handle(self, *args, **kwargs): - notes = Note.objects.fall() + notes = Note.objects.all() for n in notes: n.slug = None n.save() -- 2.25.1