From c0772dc350156359cb962089a22a3b872c7547f1 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 20 Jan 2009 14:35:18 -0500 Subject: [PATCH] F9_LogVolData should inherit from FC4_LogVolData, not FC3_LogVolData (jlaska). --- pykickstart/commands/logvol.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pykickstart/commands/logvol.py b/pykickstart/commands/logvol.py index 5b3c858..4b67c33 100644 --- a/pykickstart/commands/logvol.py +++ b/pykickstart/commands/logvol.py @@ -108,12 +108,12 @@ class RHEL5_LogVolData(FC4_LogVolData): return retval -class F9_LogVolData(FC3_LogVolData): - removedKeywords = FC3_LogVolData.removedKeywords + ["bytesPerInode"] - removedAttrs = FC3_LogVolData.removedAttrs + ["bytesPerInode"] +class F9_LogVolData(FC4_LogVolData): + removedKeywords = FC4_LogVolData.removedKeywords + ["bytesPerInode"] + removedAttrs = FC4_LogVolData.removedAttrs + ["bytesPerInode"] def __init__(self, *args, **kwargs): - FC3_LogVolData.__init__(self, *args, **kwargs) + FC4_LogVolData.__init__(self, *args, **kwargs) self.deleteRemovedAttrs() self.fsopts = kwargs.get("fsopts", "") @@ -122,7 +122,7 @@ class F9_LogVolData(FC3_LogVolData): self.passphrase = kwargs.get("passphrase", "") def _getArgsAsStr(self): - retval = FC3_LogVolData._getArgsAsStr(self) + retval = FC4_LogVolData._getArgsAsStr(self) if self.fsprofile != "": retval += " --fsprofile=\"%s\"" % self.fsprofile -- 2.11.4.GIT