From 822f6b47299d70af2f8c78a960dcced9c019c9cc Mon Sep 17 00:00:00 2001 From: "beville@gmail.com" Date: Mon, 11 Mar 2013 23:19:50 +0000 Subject: [PATCH] 0.1 issue gets special consideration a "first" issue. git-svn-id: http://comictagger.googlecode.com/svn/trunk@544 6c5673fe-1810-88d6-992b-cd32ca31540c --- comictaggerlib/issueidentifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]