Skip to content

Commit

Permalink
missed one ignore->replace
Browse files Browse the repository at this point in the history
  • Loading branch information
p0psicles committed May 14, 2016
1 parent d573ca3 commit 9918b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/scene_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def update_scene_exceptions(indexer_id, scene_exceptions, season=-1):
exceptionsCache[indexer_id] = {}
exceptionsCache[indexer_id][season] = [se.decode('utf-8', 'replace') for se in scene_exceptions]

for cur_exception in [se.decode('utf-8', 'ignore') for se in scene_exceptions]:
for cur_exception in [se.decode('utf-8', 'replace') for se in scene_exceptions]:
cache_db_con.action("INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?)",
[indexer_id, cur_exception, season])

Expand Down

0 comments on commit 9918b14

Please sign in to comment.