From: Charles Holbrow Date: Mon, 25 Mar 2013 23:56:35 +0000 (-0400) Subject: fixing typo in slug regen manage command X-Git-Tag: release-20150131~465 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9dae1e2d59631332e6484ed9d0851c6fc4cbe348;p=oweals%2Fkarmaworld.git fixing typo in slug regen manage command --- 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()