From d1300e4c00a4e61097cdd7141112ec3a6894c494 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 4 Dec 2007 19:58:09 -0500 Subject: Begin removing references to anaconda.method and anaconda.methodstr. Remove method references from the Anaconda object, along with various support functions that import methods and return instances of methods. This also removes method instances from the backend. --- backend.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'backend.py') diff --git a/backend.py b/backend.py index 9ec560b20..7632f0de6 100644 --- a/backend.py +++ b/backend.py @@ -31,12 +31,10 @@ log = logging.getLogger("anaconda") class AnacondaBackend: - def __init__(self, method, instPath): + def __init__(self, instPath): """Abstract backend class all backends should inherit from this - @param method: Object of InstallMethod type @param instPath: root path for the installation to occur""" - self.method = method self.instPath = instPath self.instLog = None self.modeText = "" -- cgit