19 строки
596 B
Python
19 строки
596 B
Python
#!/usr/bin/env python
|
|
import amo
|
|
from addons.models import Preview
|
|
from translations.models import delete_translation
|
|
|
|
|
|
def run():
|
|
"""
|
|
Remove captions from Webapp Previews.
|
|
"""
|
|
# This should be done in a separate script, it's taking too long to be
|
|
# a migration, and it doesn't need to be done as soon as we have deployed,
|
|
# it can be done later.
|
|
pass
|
|
# for prev in Preview.objects.filter(
|
|
# addon__type=amo.ADDON_WEBAPP,
|
|
# caption__isnull=False).no_transforms().no_cache().iterator():
|
|
# delete_translation(prev, 'caption')
|