Skip to content
This repository has been archived by the owner on Oct 14, 2019. It is now read-only.

Commit

Permalink
Typos all over again
Browse files Browse the repository at this point in the history
  • Loading branch information
thecsw committed May 18, 2019
1 parent 527e846 commit e7a1c92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ def modify_firm_other(firm):
replace("%FIRM_NAME%", firm.name).\
replace("%FIRM_ID%", str(firm.id)).\
replace("%BALANCE%", "{:,}".format(firm.balance)).\
replace("%TAX%", str(firm.tax)) \
replace("%MEMBERS%", str(firm.size)) \
replace("%TAX%", str(firm.tax)).\
replace("%MEMBERS%", str(firm.size)).\
replace("%LEVEL%", str(firm.rank + 1))


Expand Down Expand Up @@ -460,8 +460,8 @@ def modify_firm_self(rank, firm):
replace("%FIRM_NAME%", firm.name).\
replace("%FIRM_ID%", str(firm.id)).\
replace("%BALANCE%", "{:,}".format(firm.balance)).\
replace("%TAX%", str(firm.tax)) \
replace("%MEMBERS%", str(firm.size)) \
replace("%TAX%", str(firm.tax)).\
replace("%MEMBERS%", str(firm.size)).\
replace("%LEVEL%", str(firm.rank + 1))


Expand Down

0 comments on commit e7a1c92

Please sign in to comment.