Skip to content

Commit

Permalink
Fixed spacing mistake in command cost error message
Browse files Browse the repository at this point in the history
  • Loading branch information
thelabcat committed Nov 10, 2024
1 parent c4666e4 commit bc53c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rumchat_actor/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def call(self, message):
not (True in [badge.slug in self.free_badges for badge in message.user.badges]):

self.actor.send_message("@" + message.user.username +
f"That command costs ${self.amount_cents/100:.2f}."
f" That command costs ${self.amount_cents/100:.2f}."
)
return

Expand Down

0 comments on commit bc53c98

Please sign in to comment.