diff options
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index f673aed85..1c17a4421 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -5747,7 +5747,7 @@ class ExportTask(models.Model): def clean(self): if (self.filter_text and not self.filter_type) or ( - self.filter_type and not self.filter_type): + self.filter_type and not self.filter_text): raise ValidationError( _("To filter filter type and filter text must be filled.") ) |