X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0a9a7967e1282fe7a85ec906c93e20a25ce821d1..1e1c01fece5a4a86a762af265e382da5dbb2d8cb:/lib/python/Components/Network.py diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index 444269fb..99afb75d 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -123,7 +123,7 @@ class Network: ipstr = [0,0,0,0] for x in os.popen("ifconfig eth0 | grep 'inet addr:'", "r").readline().split(' '): if x.split(':')[0] == "addr": - ip = x.split(':')[1].split('.') + ipstr = x.split(':')[1].split('.') ip = [] for x in ipstr: ip.append(int(x))