From 7278198bee046ef1b03e75c15528ecc7edf82bbe Mon Sep 17 00:00:00 2001 From: evilhero Date: Sat, 31 Dec 2016 01:47:24 -0500 Subject: [PATCH] FIX:(#1513) Fix for problem with file-scanner recognizing issues with 'Vol.#' in the series title --- mylar/filechecker.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mylar/filechecker.py b/mylar/filechecker.py index b4cabb62..bbda979a 100755 --- a/mylar/filechecker.py +++ b/mylar/filechecker.py @@ -520,6 +520,11 @@ class FileChecker(object): volumeprior_label = sf sep_volume = True + elif any([sf == 'I', sf == 'II', sf == 'III', sf == 'IV']) and volumeprior: + volumeprior = False + volumeprior_label = None + sep_volume = False + continue else: #reset the sep_volume indicator here in case a false Volume detected above sep_volume = False