diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/monitor.py | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,7 @@ Mandriva network monitoring tool -- History of user-visible changes Copyright (C) 2009, Mandriva - fix missing interface name in message +- silent a warning when there's no wireless device 0.15: - updated translations diff --git a/src/monitor.py b/src/monitor.py index 8d6c909..7cb9192 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -2,6 +2,7 @@ """net_monitor: wifi monitoring""" import os +import os.path import socket import fcntl import struct @@ -159,6 +160,8 @@ class Monitor: """Check if device is wireless and get its details if necessary""" try: stats = {} + if not os.path.isfile("/proc/net/wireless"): + return stats with open("/proc/net/wireless") as fd: ifaces = fd.readlines()[2:] for line in ifaces: |