From 33e7f6559bcb96756f1a4c477f39cf3063675c23 Mon Sep 17 00:00:00 2001 From: Zack Gold Date: Mon, 3 Jun 2013 18:36:06 -0600 Subject: [PATCH] Update network.py interface was spelled wrong --- i3pystatus/network.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/i3pystatus/network.py b/i3pystatus/network.py index 9ad6c95..1769bc4 100644 --- a/i3pystatus/network.py +++ b/i3pystatus/network.py @@ -1,4 +1,3 @@ - from itertools import zip_longest import subprocess @@ -73,7 +72,7 @@ class Network(IntervalModule): def init(self): if self.interface not in netifaces.interfaces(): - raise RuntimeError("Unknown inteface {iface}!".format(iface=self.inteface)) + raise RuntimeError("Unknown interface {iface}!".format(iface=self.interface)) self.baseinfo = { "interface": self.interface,