Skip to content

Commit

Permalink
missing fs
Browse files Browse the repository at this point in the history
  • Loading branch information
sumpfork committed Apr 10, 2024
1 parent fe012d6 commit 6fc47ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/domdiv/cards.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def setImage(self, use_set_icon=False):
setImage = Card.sets[self.cardset_tag]["image"]

if setImage is None and self.cardset_tag != "base":
logger.warning('no set image for set "{self.cardset}", card "{self.name}"')
logger.warning(f'no set image for set "{self.cardset}", card "{self.name}"')
return setImage

def setTextIcon(self):
Expand All @@ -222,7 +222,7 @@ def setTextIcon(self):
setTextIcon = Card.sets[self.cardset_tag]["text_icon"]

if setTextIcon is None and self.cardset != "base":
logger.warning('no set text for set "{self.cardset}", card "{self.name}"')
logger.warning(f'no set text for set "{self.cardset}", card "{self.name}"')
return setTextIcon

def isBlank(self):
Expand Down

0 comments on commit 6fc47ae

Please sign in to comment.