Skip to content

Commit

Permalink
*Always* display ls to station in dockFmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Dec 24, 2014
1 parent ab7715e commit 84aed06
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 @@ -181,7 +181,7 @@ def makeAge(value):
if dockFmt:
stnName = route[i+1].name()
lsFromStar = route[i+1].lsFromStar
if lsFromStar >= 100:
if lsFromStar > 0:
stnName += " ({:n}ls)".format(lsFromStar)
text += dockFmt.format(
station=stnName
Expand Down

0 comments on commit 84aed06

Please sign in to comment.