view band/management/commands/untextile.py @ 163:7fc4123fef70

Stop passing callable to queryset. This is now deprecated. The usage here was most likely a mistake that has worked all these years. This change was for upgrading to Django 1.7.
author Brian Neal <bgneal@gmail.com>
date Thu, 02 Apr 2015 19:17:47 -0500
parents 7b52e8ef01ec
children
line wrap: on
line source
"""
untextile.py - A command to remove the use of Textile by updating the models.

"""
import textile

from django.core.management.base import NoArgsCommand
from photologue.models import Gallery


class Command(NoArgsCommand):
    help = 'Updates models by un-textiling text fields'

    def handle_noargs(self, **options):

        for gallery in Gallery.objects.all():
            gallery.description = textile.textile(gallery.description,
                                                  encoding='utf-8',
                                                  output='utf-8')
            gallery.save()