aboutsummaryrefslogtreecommitdiffstats
path: root/src/monitor.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/monitor.py')
-rw-r--r--src/monitor.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/monitor.py b/src/monitor.py
index 45464f0..5a2bcfe 100644
--- a/src/monitor.py
+++ b/src/monitor.py
@@ -208,17 +208,19 @@ class Monitor:
def get_traffic(self, iface, net=None):
"""Get traffic information"""
+ device_exists=False
if not net:
if not self.net:
self.readnet()
net = self.net
if iface in net:
+ device_exists=True
bytes_in = int(net[iface][0])
bytes_out = int(net[iface][8])
else:
bytes_in = 0
bytes_out = 0
- return bytes_in, bytes_out
+ return device_exists, bytes_in, bytes_out
def format_size(self, size, opt=""):
"""Pretty-Formats size"""