summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kickstart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index e5e613129..f78a4c00c 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1066,7 +1066,7 @@ def setSteps(anaconda):
# Only skip the network screen if there are no devices that used
# network --bootproto=ask.
- if len(filter(lambda nd: nd.bootproto == BOOTPROTO_ASK, ksdata.network.network)) == 0:
+ if len(filter(lambda nd: nd.bootProto == BOOTPROTO_ASK, ksdata.network.network)) == 0:
dispatch.skipStep("network")
# Don't show confirmation screens on non-interactive installs.