aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-08 03:52:44 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-08 03:52:44 +0100
commit123ecac86250f7f3dd13a3f94758ed997a48cace (patch)
tree430de0551946968fbd8b92f35bc8fe192c732894 /examples
parentuse curl instead of wget (diff)
downloadxpybar-123ecac86250f7f3dd13a3f94758ed997a48cace.tar.gz
xpybar-123ecac86250f7f3dd13a3f94758ed997a48cace.tar.bz2
xpybar-123ecac86250f7f3dd13a3f94758ed997a48cace.tar.xz
proper multi-home support in ipaddress
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/plugins/ipaddress2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/plugins/ipaddress b/examples/plugins/ipaddress
index f29fdb4..96572ee 100644
--- a/examples/plugins/ipaddress
+++ b/examples/plugins/ipaddress
@@ -22,7 +22,7 @@ def start():
def redraw():
addr = IPAddress('lo')
- text = 'Addr: %s' % ', '.join(addr.public().keys())
+ text = 'Addr: %s' % ', '.join(addr for addr in addr.public().keys() if addr is not None)
bar.clear()
bar.draw_coloured_text(0, 10, 0, 2, text)