diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-03-31 15:53:09 +0200 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-03-31 15:53:09 +0200 |
| commit | 624cd1811f54808d23a50840bb35494e4e5ca3b6 (patch) | |
| tree | 6c1339bd9e7777ebaa6a13fff6202ebfdfd1e193 /lib/python/Components/Network.py | |
| parent | 354bc82ac66fc75ede33a38e9f9ba870b16352f0 (diff) | |
| parent | bce53d4a67d1655a496eebe5912c8573e880114e (diff) | |
| download | enigma2-624cd1811f54808d23a50840bb35494e4e5ca3b6.tar.gz enigma2-624cd1811f54808d23a50840bb35494e4e5ca3b6.zip | |
Merge branch 'tmbinc/FixTimingBugs'
Diffstat (limited to 'lib/python/Components/Network.py')
| -rwxr-xr-x | lib/python/Components/Network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index c0b799ba..5f7095c4 100755 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -206,7 +206,7 @@ class Network: ifaces[currif]["gateway"] = map(int, split[1].split('.')) if self.ifaces[currif].has_key("gateway"): if self.ifaces[currif]["gateway"] != ifaces[currif]["gateway"] and ifaces[currif]["dhcp"] == False: - self.ifaces[currif]["gateway"] = map(int, split[1].split('.')) + self.ifaces[currif]["gateway"] = map(int, split[1].split('.')) if (split[0] == "pre-up"): if self.ifaces[currif].has_key("preup"): self.ifaces[currif]["preup"] = i |
