Commit fd6f0cb4 by Dag Wieers

Update facts.py

parent 14a99669
...@@ -140,7 +140,7 @@ class Facts(object): ...@@ -140,7 +140,7 @@ class Facts(object):
days = int(raw.split()[2]) days = int(raw.split()[2])
if 'min' in raw: if 'min' in raw:
hours = 0 hours = 0
minutes = int(raw[4]) minutes = int(raw.split()[4])
else: else:
hours, minutes = map(int, raw.split()[4].split(':')) hours, minutes = map(int, raw.split()[4].split(':'))
self.facts['uptime'] = days*24*60*60 + hours*60*60 + minutes*60 self.facts['uptime'] = days*24*60*60 + hours*60*60 + minutes*60
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment