typo in nic.py: minium -> minimum
This commit is contained in:
parent
a1ae6d4f34
commit
4784be4076
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ class Module(core.module.Module):
|
||||||
# Remove trailing . by slicing it off ;)
|
# Remove trailing . by slicing it off ;)
|
||||||
strength_dbm = line.split()[3][:-1]
|
strength_dbm = line.split()[3][:-1]
|
||||||
return util.format.asint(strength_dbm,
|
return util.format.asint(strength_dbm,
|
||||||
minium=self.__strength_dbm_lower_bound,
|
minimum=self.__strength_dbm_lower_bound,
|
||||||
maximum=self.__strength_dbm_upper_bound)
|
maximum=self.__strength_dbm_upper_bound)
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in a new issue