Skip to content

Commit

Permalink
Fix formatting on disabled for check
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Dawson <scott@uu.net.nz>
  • Loading branch information
sjdaws committed Apr 22, 2022
1 parent 2a3b65b commit a129cd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions traktarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ def automatic_shows(

local_ignore_blacklist = ignore_blacklist

if "watchlist:%s".format(authenticate_user) in cfg.filters.shows.disabled_for:
if "watchlist:{}".format(authenticate_user) in cfg.filters.shows.disabled_for:
local_ignore_blacklist = True

# run shows
Expand Down Expand Up @@ -1384,7 +1384,7 @@ def automatic_shows(

local_ignore_blacklist = ignore_blacklist

if "list:%s".format(list_) in cfg.filters.shows.disabled_for:
if "list:{}".format(list_) in cfg.filters.shows.disabled_for:
local_ignore_blacklist = True

# run shows
Expand Down Expand Up @@ -1483,7 +1483,7 @@ def automatic_movies(

local_ignore_blacklist = ignore_blacklist

if "watchlist:%s".format(authenticate_user) in cfg.filters.movies.disabled_for:
if "watchlist:{}".format(authenticate_user) in cfg.filters.movies.disabled_for:
local_ignore_blacklist = True

# run movies
Expand Down Expand Up @@ -1519,7 +1519,7 @@ def automatic_movies(

local_ignore_blacklist = ignore_blacklist

if "list:%s".format(list_) in cfg.filters.movies.disabled_for:
if "list:{}".format(list_) in cfg.filters.movies.disabled_for:
local_ignore_blacklist = True

# run shows
Expand Down

0 comments on commit a129cd2

Please sign in to comment.