mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix post processing of anime with version tags
This commit is contained in:
parent
0a8485a358
commit
9b8898d2f5
2 changed files with 2 additions and 1 deletions
|
@ -105,6 +105,7 @@
|
|||
* Fix issue parsing items in ToktoToshokan provider
|
||||
* Change to only show option "End upgrade on first match" on edit show page if quality custom is selected
|
||||
* Change label "Show is grouped in" in edit show page to "Show is in group" and move the section higher
|
||||
* Fix post processing of anime with version tags
|
||||
|
||||
[develop changelog]
|
||||
* Update Requests library 2.7.0 (ab1f493) to 2.7.0 (8b5e457)
|
||||
|
|
|
@ -882,7 +882,7 @@ class PostProcessor(object):
|
|||
ep_obj.show.writeMetadata(True)
|
||||
|
||||
# if we're processing an episode of type anime, get the anime version
|
||||
anime_version = (-1, self.anime_version)[ep_obj.show.is_anime and None is not self.anime_version and self.anime_version]
|
||||
anime_version = (-1, self.anime_version)[ep_obj.show.is_anime and None is not self.anime_version]
|
||||
|
||||
# update the ep info before we rename so the quality & release name go into the name properly
|
||||
sql_l = []
|
||||
|
|
Loading…
Reference in a new issue