Skip to content

Commit

Permalink
multiverseid can be zero sometimes.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwax committed Feb 28, 2016
1 parent 36647a7 commit c946c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mtg_ssm/mtg/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def set_code_to_printings_key(printing):
return (
printing.set_integer or 0,
str(printing.set_variant),
printing.multiverseid,
printing.multiverseid or 0,
printing.card_name,
)

Expand All @@ -21,7 +21,7 @@ def card_name_to_printing_key(printing):
printing.set_code,
printing.set_integer or 0,
str(printing.set_variant),
printing.multiverseid,
printing.multiverseid or 0,
)


Expand Down

0 comments on commit c946c6a

Please sign in to comment.