From 0580f23aa6f6cf96130edb22fbf21e83ccb347fd Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 4 Sep 2007 15:40:29 +0000 Subject: [PATCH] self.deviceOpts -> self.moduleOpts. --- ChangeLog | 5 ++++- pykickstart/commands/device.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 508011d..44cd478 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,9 +3,12 @@ * pykickstart/parser.py (Script.__str__, Packages.__str__): Add %end token to the end of these sections. - * pykicsktart/commands/bootloader.py (FC4_Bootloader): Call + * pykickstart/commands/bootloader.py (FC4_Bootloader): Call superclass's __init__ method. + * pykickstart/commands/device.py (FC3_Device): self.deviceOpts -> + self.moduleOpts. + * pykickstart/commands/network.py: Don't pass self when calling _populateParser outside of the overridden method. (F8_NetworkData.__init__): Pass noipv4 and noipv6 to superclass. diff --git a/pykickstart/commands/device.py b/pykickstart/commands/device.py index d41757b..1980a52 100644 --- a/pykickstart/commands/device.py +++ b/pykickstart/commands/device.py @@ -30,7 +30,7 @@ class FC3_Device(KickstartCommand): KickstartCommand.__init__(self, writePriority) self.type = type self.moduleName = moduleName - self.deviceOpts = moduleOpts + self.moduleOpts = moduleOpts def __str__(self): if self.moduleName != "": -- 2.11.4.GIT