diff --git a/i3pystatus/network.py b/i3pystatus/network.py index da64001..0dd8350 100644 --- a/i3pystatus/network.py +++ b/i3pystatus/network.py @@ -83,7 +83,7 @@ class Network(IntervalModule): def run(self): info = netifaces.ifaddresses(self.interface) up = netifaces.AF_INET in info or netifaces.AF_INET6 in info - fdict = dict(zip_longest(["v4", "v4mask", "v6", "v6mask"], [], fillvalue="")) + fdict = dict(zip_longest(["v4", "v4mask", "v4cidr", "v6", "v6mask", "v6cidr"], [], fillvalue="")) fdict.update(self.baseinfo) if up: diff --git a/setup.py b/setup.py index ba48dae..0829549 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name="i3pystatus", - version="3.4", + version="3.5", description="Like i3status, this generates status line for i3bar / i3wm", url="http://github.com/enkore/i3pystatus", license="MIT",