Commit 4c75f1b1 authored by Michal Čihař's avatar Michal Čihař

Fixed translation filtering

parent 6b6f6554
...@@ -23,7 +23,7 @@ Helper classes for management commands. ...@@ -23,7 +23,7 @@ Helper classes for management commands.
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from optparse import make_option from optparse import make_option
from trans.models import Unit, SubProject from trans.models import Unit, SubProject, Translation
class WeblateCommand(BaseCommand): class WeblateCommand(BaseCommand):
...@@ -52,7 +52,9 @@ class WeblateCommand(BaseCommand): ...@@ -52,7 +52,9 @@ class WeblateCommand(BaseCommand):
''' '''
Returns list of translations matching parameters. Returns list of translations matching parameters.
''' '''
return self.get_subprojects(*args, **options).translation_set.all() return Translation.objects.filter(
subproject__in=self.get_subprojects(*args, **options)
)
def get_subprojects(self, *args, **options): def get_subprojects(self, *args, **options):
''' '''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment