I am backing up some TV series with the title format XYZ Disc #.
I encountered two issues:
1) The Disc(\d) regex will not capture these titles due to the whitespace character.
2) The get_type() detection is done before get_title() therefore it will not pick up the fixed-up titles, and the TV series gets detected as a movie. (Note that get_title() changes the self.vidName variable.)
I fixed these two problems and I've also added a few more debug messages.
I am backing up some TV series with the title format
XYZ Disc #
.I encountered two issues:
1) The
Disc(\d)
regex will not capture these titles due to the whitespace character. 2) Theget_type()
detection is done beforeget_title()
therefore it will not pick up the fixed-up titles, and the TV series gets detected as a movie. (Note thatget_title()
changes theself.vidName
variable.)I fixed these two problems and I've also added a few more debug messages.