diff --git a/comictaggerlib/issueidentifier.py b/comictaggerlib/issueidentifier.py index 2bf0126..702cda3 100644 --- a/comictaggerlib/issueidentifier.py +++ b/comictaggerlib/issueidentifier.py @@ -414,7 +414,7 @@ class IssueIdentifier: series_second_round_list.append(item) # if we don't think it's an issue number 1, remove any series' that are one-shots - if keys['issue_number'] not in [ '1', '0' ]: + if keys['issue_number'] not in [ '1', '0', '0.1' ]: #self.log_msg( "Removing one-shots" ) series_second_round_list[:] = [x for x in series_second_round_list if not x['count_of_issues'] == 1]