Skip to content

Commit

Permalink
Fix typo (#84)
Browse files Browse the repository at this point in the history
Co-authored-by: Santiago Valenzuela <santiago.valenzuela@25store.us>
  • Loading branch information
mastersuv and Santiago Valenzuela committed Nov 28, 2020
1 parent 69dfbc1 commit a20889d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Transaction(DeferredReflection, TableDeclarativeBase):
def text(self, w: "worker.Worker"):
string = f"<b>T{self.transaction_id}</b> | {str(self.user)} | {w.Price(self.value)}"
if self.refunded:
string += f" | {w.loc['emoji_refunded']}"
string += f" | {w.loc.get('emoji_refunded')}"
if self.provider:
string += f" | {self.provider}"
if self.notes:
Expand Down

0 comments on commit a20889d

Please sign in to comment.