mirror of
https://github.com/evilhero/mylar
synced 2025-03-09 21:33:42 +00:00
FIX:(#450) Problem with pullist Publisher column grouping incorrectly.
This commit is contained in:
parent
ff198c75fc
commit
d103848cf4
1 changed files with 8 additions and 3 deletions
|
@ -78,6 +78,7 @@ def pullit(forcecheck=None):
|
|||
# this checks for the following lists
|
||||
# first need to only look for checkit variables
|
||||
checkit=['COMICS',
|
||||
'COMIC & GRAPHIC NOVELS',
|
||||
'IDW PUBLISHING',
|
||||
'MAGAZINES',
|
||||
'MERCHANDISE']
|
||||
|
@ -168,9 +169,13 @@ def pullit(forcecheck=None):
|
|||
flagged = "yes"
|
||||
break
|
||||
else:
|
||||
pub = format(str(yesyes))
|
||||
#print (pub)
|
||||
break
|
||||
if i.find("COMIC") < 1 and "GRAPHIC NOVELS" in i:
|
||||
pub = "COMICS"
|
||||
break
|
||||
else:
|
||||
pub = format(str(yesyes))
|
||||
#print (pub)
|
||||
break
|
||||
if flagged == "no":
|
||||
break
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue