Skip to content

Commit

Permalink
Fix help text in language field in repository filter
Browse files Browse the repository at this point in the history
  • Loading branch information
dougppaz committed Nov 19, 2018
1 parent 2266be6 commit 4ed06bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bothub/api/v2/repository/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Meta:
language = filters.CharFilter(
field_name='language',
method='filter_language',
help_text=_('Repository\'s UUID'))
help_text=_('Language'))

def filter_language(self, queryset, name, value):
return queryset.supported_language(value)

0 comments on commit 4ed06bf

Please sign in to comment.