Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/psutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/psutils.py')
-rw-r--r--src/psutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/psutils.py b/src/psutils.py
index f7c6db7..630d39c 100644
--- a/src/psutils.py
+++ b/src/psutils.py
@@ -284,7 +284,7 @@ class IP4AddressMonitor(gobject.GObject):
import commands
(s, o) = commands.getstatusoutput("/sbin/route -n")
if s != 0:
- return
+ return None, None
for line in o.split('\n'):
fields = line.split(" ")
if fields[0] == "0.0.0.0":