Small fix (3.5)

Version numbering policy:
Increment the most righthand number every single time the package
is uploaded to PyPI.
This commit is contained in:
enkore 2013-03-07 18:49:57 +01:00
parent 4cd1b177de
commit 4d42589213
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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",