diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/monitor.py | 2 | ||||
-rwxr-xr-x | src/net_monitor | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/monitor.py b/src/monitor.py index 53bfdd0..bc9c323 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -213,7 +213,7 @@ class Monitor: traceback.print_exc() return net - def check_network_accounting(self, iface): + def has_network_accounting(self, iface): """Checks if network accounting was enabled on interface""" try: os.stat("/var/lib/vnstat/%s" % iface) diff --git a/src/net_monitor b/src/net_monitor index 6934741..117ddc4 100755 --- a/src/net_monitor +++ b/src/net_monitor @@ -325,7 +325,7 @@ class MonitorGui: cur_page = self.notebook.append_page(iface_stat, iface_label) if default_iface and iface == default_iface: select_page = cur_page - if self.monitor.check_network_accounting(iface): + if self.monitor.has_network_accounting(iface): self.enabled_ifaces.append(iface) # finally, we have tabs for network connections @@ -504,7 +504,7 @@ class MonitorGui: ) # statistics vbox stats_vbox = dialog.vbox - if self.monitor.check_network_accounting(iface): + if self.monitor.has_network_accounting(iface): # graph graph_vnstat = gtk.Image() pixbuf = self.load_graph_from_vnstat(iface, type="summary") @@ -731,7 +731,7 @@ class MonitorGui: frame_accounting = gtk.Frame(_("Traffic accounting")) vbox = gtk.VBox() frame_accounting.add(vbox) - if self.monitor.check_network_accounting(iface): + if self.monitor.has_network_accounting(iface): iface_u, iface_uptime = self.build_value_pair(sizegroup1, _("Connection time:")) self.ifaces[iface]["widget_uptime"] = iface_uptime vbox.pack_start(iface_u, False, False) |