Skip to content

Commit

Permalink
'and' in date ranges misconstrued '2days and 10hrs'
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Jan 11, 2015
1 parent fccc557 commit 157fa3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tradecalc.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def makeAge(value):
else:
srcAge = makeAge(trade.srcAge)
dstAge = makeAge(trade.dstAge)
age = "{} and {}".format(srcAge, dstAge)
age = "{} vs {}".format(srcAge, dstAge)
purchases += hopStepFmt.format(
qty=qty, item=trade.name(),
eacost=trade.costCr,
Expand Down

0 comments on commit 157fa3b

Please sign in to comment.