Fix RECV/SENT start values
This commit is contained in:
parent
2c8dafec70
commit
dff187252a
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ class Module(core.module.Module):
|
||||||
try:
|
try:
|
||||||
self._bandwidth = BandwidthInfo()
|
self._bandwidth = BandwidthInfo()
|
||||||
|
|
||||||
self._rate_recv = "?"
|
self._rate_recv = 0
|
||||||
self._rate_sent = "?"
|
self._rate_sent = 0
|
||||||
self._bytes_recv = self._bandwidth.bytes_recv()
|
self._bytes_recv = self._bandwidth.bytes_recv()
|
||||||
self._bytes_sent = self._bandwidth.bytes_sent()
|
self._bytes_sent = self._bandwidth.bytes_sent()
|
||||||
except Exception:
|
except Exception:
|
||||||
|
|
Loading…
Reference in a new issue