X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/408c5296eb54925f097cf7b80343a38ba13f4cbf..73f8bc2d9e8b1588921635c65d4c664216cfc658:/lib/python/Components/Network.py diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index 6990f356..99afb75d 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -120,10 +120,13 @@ class Network: #self.writeNetworkConfig() def getCurrentIP(self): - ip = [0,0,0,0] + 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)) print "[Network.py] got ip " + str(ip) return ip