Skip to content

Commit

Permalink
Changed/Fixed error message. (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayfulla authored Sep 28, 2023
1 parent 2cffd22 commit dfc34f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def keywords(self, keywords):
else:
if not hasattr(keywords, "__iter__"):
# Not iterable
raise ValueError("Keywords must be an intrable")
raise ValueError("Keywords must be an iterable")
kws = list(keywords)
if get_setting("INCLUDE_KEYWORDS"):
kws += get_setting("INCLUDE_KEYWORDS")
Expand Down

0 comments on commit dfc34f8

Please sign in to comment.