revert loss pack to using floats in all related places

This commit is contained in:
bharnden 2019-07-03 23:09:55 -07:00
parent 02d9418808
commit ae5d718737
5 changed files with 7 additions and 7 deletions

View file

@ -782,7 +782,7 @@ class CoreXmlReader(object):
link_options.mburst = get_int(options_element, "mburst")
link_options.jitter = get_int(options_element, "jitter")
link_options.key = get_int(options_element, "key")
link_options.per = get_int(options_element, "per")
link_options.per = get_float(options_element, "per")
link_options.unidirectional = get_int(options_element, "unidirectional")
link_options.session = options_element.get("session")
link_options.emulation_id = get_int(options_element, "emulation_id")