aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Network.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/Network.py')
-rw-r--r--lib/python/Components/Network.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index 6990f356..444269fb 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('.')
+ ip = []
+ for x in ipstr:
+ ip.append(int(x))
print "[Network.py] got ip " + str(ip)
return ip