This commit is contained in:
PCoder 2021-11-29 08:13:02 +05:30
parent 9bda626544
commit 07f21bb350
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ class Keyword(models.Model):
keyword = models.TextField(blank=True, null=True)
def __str__(self):
return '%s > %s' % (self.mother, self.keyword) if self.mother.keyword != '->' and self.mother != '->' else self.keyword
return '%s > %s' % (self.mother, self.keyword) if self.mother.keyword != '->' and str(self.mother) == '0' else self.keyword
class ResourceKeyword(models.Model):