- A few more fixes for the SetInfo Script.

This commit is contained in:
jendave
2011-08-06 11:49:21 +00:00
parent 3b917be890
commit 8fbdf89c53

View File

@@ -146,7 +146,10 @@ def addSets(card):
print card.name
for edition in allSets.keys():
edIndex = block.find(edition+'<')
edIndex = block.find('>'+edition+'<') # Portal/Mirrodin issue
if edIndex == -1:
edIndex = block.find('>'+edition+' (') # Single set issue
if edIndex == -1:
continue