summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-11-11 21:56:17 +0100
committerHans de Goede <hdegoede@redhat.com>2008-11-11 22:25:40 +0100
commitfcfe145386bdb79344d8ee3cf620876844b9e8a0 (patch)
tree57b78fe200a4da528d4819087ce1d665d93af5ca
parent8bc8a2f5698ac329d27c0493545a6dacde28d93c (diff)
downloadanaconda-fcfe145386bdb79344d8ee3cf620876844b9e8a0.tar.gz
anaconda-fcfe145386bdb79344d8ee3cf620876844b9e8a0.tar.xz
anaconda-fcfe145386bdb79344d8ee3cf620876844b9e8a0.zip
Fix typo in variable name in textmode network config interface (#469734)
Fix typo in variable name in textmode network config interface (pychecker fix)
-rw-r--r--textw/network_text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/network_text.py b/textw/network_text.py
index e3b84c070..cb5151dc4 100644
--- a/textw/network_text.py
+++ b/textw/network_text.py
@@ -163,9 +163,9 @@ class NetworkDeviceWindow:
if isPtp:
ipmiscgrid.setField(Label(_("P-to-P:")), 0, ipmiscrow,
anchorLeft = 1, padding = (0, 1, 1, 0))
- ptplist = Entry(41)
- ptplist.set(dev.get('remip'))
- ipmiscgrid.setField(ptplist, 1, ipmiscrow, anchorLeft = 1,
+ ptpaddr = Entry(41)
+ ptpaddr.set(dev.get('remip'))
+ ipmiscgrid.setField(ptpaddr, 1, ipmiscrow, anchorLeft = 1,
padding = (0, 1, 0, 0))
ipmiscrow += 1