ignore packaged apps in domain change

This commit is contained in:
Andy McKay 2012-11-08 11:55:41 -08:00
Родитель f7433dfc89
Коммит f898b2aaf9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -49,7 +49,7 @@ class Command(BaseCommand):
apps = (Addon.objects
.filter(status__in=[amo.STATUS_PUBLIC, amo.STATUS_PENDING],
type=amo.ADDON_WEBAPP)
type=amo.ADDON_WEBAPP, is_packaged=False)
.no_transforms())
# Not chunking because I know there are very few of these apps at
# this time.