Skip to content

Commit

Permalink
Fix for "nav" using the wrong age calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed May 3, 2015
1 parent e5e042f commit 285ff1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/nav_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def run(results, cmdenv, tdb):
if maxPadSize and not station.checkPadSize(maxPadSize):
continue
if station.itemCount:
age = "{:7.2f}".format(station.dataAge / 86400)
age = "{:7.2f}".format(station.dataAge)
else:
age = "-"
rr = ResultRow(
Expand Down

0 comments on commit 285ff1f

Please sign in to comment.