Commit a46e1191e44af37ac5b0bcd16e7407e66b8276e3

Authored by Gust
Committed by Sergio Oliveira
1 parent 0dacc63d
Exists in trac_indexing

Correct wrong attribute name

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
colab/proxy/trac/search_indexes.py
... ... @@ -75,7 +75,7 @@ class AttachmentIndex(BaseIndex, indexes.Indexable):
75 75  
76 76  
77 77 class WikiIndex(BaseIndex, indexes.Indexable):
78   - title = indexes.CharField(model_attr='name')
  78 + title = indexes.CharField(model_attr='title')
79 79 collaborators = indexes.CharField(
80 80 model_attr='collaborators',
81 81 null=True,
... ...