Skip to content

Commit

Permalink
Remove failed message from show/episode/movie dict
Browse files Browse the repository at this point in the history
Signed-off-by: Luigi311 <[email protected]>
  • Loading branch information
luigi311 committed Dec 11, 2023
1 parent 3ce6ad6 commit feb71c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def show_title_dict(user_list: dict):

return show_output_dict
except Exception:
logger("Generating show_output_dict failed, skipping", 1)
logger("Skipping show_output_dict ", 1)
return {}


Expand Down Expand Up @@ -213,7 +213,7 @@ def episode_title_dict(user_list: dict):

return episode_output_dict
except Exception:
logger("Generating episode_output_dict failed, skipping", 1)
logger("Skipping episode_output_dict", 1)
return {}


Expand Down Expand Up @@ -246,7 +246,7 @@ def movies_title_dict(user_list: dict):

return movies_output_dict
except Exception:
logger("Generating movies_output_dict failed, skipping", 1)
logger("Skipping movies_output_dict failed", 1)
return {}


Expand Down

0 comments on commit feb71c6

Please sign in to comment.