Skip to content

Commit

Permalink
[64] fix imdb_interests (#2479)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 authored and actions-user committed Jan 24, 2025
1 parent bb8cfeb commit 2cd0401
Show file tree
Hide file tree
Showing 3 changed files with 217 additions and 218 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0-build63
2.1.0-build64
2 changes: 1 addition & 1 deletion modules/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1609,7 +1609,7 @@ def _imdb(self, method_name, method_data):
if res:
interests.append(res.group(1))
else:
raise Failed(f"{method_name} {search_method} attribute: {search_data} must match pattern ev\\d+ e.g. ev0000292 or be one of {', '.join([e for e in imdb.interest_options])}")
raise Failed(f"{method_name} {search_method} attribute: {search_data} must match pattern ev\\d+ e.g. in0000092 or be one of {', '.join([e for e in imdb.interest_options])}")
if interests:
new_dictionary[lower_method] = interests
elif search_attr == "company":
Expand Down
Loading

0 comments on commit 2cd0401

Please sign in to comment.