Skip to content
Snippets Groups Projects
Commit d548abe8 authored by juga's avatar juga
Browse files

Fix earliest bandwidth from results

by mistake from_results was calling latest_bandwidth instead of
earliest_bandwidth
parent 82e7665d
No related branches found
No related tags found
No related merge requests found
......@@ -223,7 +223,7 @@ class V3BwHeader(object):
def from_results(cls, conf, results):
kwargs = dict()
latest_bandwidth = cls.latest_bandwidth_from_results(results)
earliest_bandwidth = cls.latest_bandwidth_from_results(results)
earliest_bandwidth = cls.earliest_bandwidth_from_results(results)
generator_started = cls.generator_started_from_file(conf)
timestamp = str(latest_bandwidth)
kwargs['latest_bandwidth'] = unixts_to_isodt_str(latest_bandwidth)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment