summaryrefslogtreecommitdiffstats
path: root/cobbler/item_system.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-09-21 16:35:23 -0400
committerJim Meyering <jim@meyering.net>2006-09-21 16:35:23 -0400
commitce22c5989fc2ca2574bf75bd9fbd626d41771f72 (patch)
tree3818d86fa383296262de3a64dca18e9c13bf46b8 /cobbler/item_system.py
parenta846ccb34ab5723bc4ecef309575aae1c2532f51 (diff)
downloadthird_party-cobbler-ce22c5989fc2ca2574bf75bd9fbd626d41771f72.tar.gz
third_party-cobbler-ce22c5989fc2ca2574bf75bd9fbd626d41771f72.tar.xz
third_party-cobbler-ce22c5989fc2ca2574bf75bd9fbd626d41771f72.zip
Naming cleanup of a few variables now that we're dealing with more
than pxelinux.0 (likely elilo.efi)
Diffstat (limited to 'cobbler/item_system.py')
-rw-r--r--cobbler/item_system.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/item_system.py b/cobbler/item_system.py
index ff6d447..bde3c28 100644
--- a/cobbler/item_system.py
+++ b/cobbler/item_system.py
@@ -73,7 +73,7 @@ class System(item.Item):
this parameter is meaningless. It only has value when
generating a dhcp file.
"""
- for arch in keys(self.config.pxelinuxes):
+ for arch in keys(self.config.bootloaders):
if arch == new_arch:
return True
raise cexceptions.CobblerException("exc_pxe_arch")