From f2d5ded837c3bd2f2ec1f6f0f3cd8d312ca509b9 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 17 Dec 2007 14:51:44 -0500 Subject: Make doMethodComplete not depend on the yum backend Move backend specific bits of method complete into a backend.complete() method to avoid tracebacks with installs on other backends --- backend.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'backend.py') diff --git a/backend.py b/backend.py index 3d72dc30e..80c79f0f4 100644 --- a/backend.py +++ b/backend.py @@ -185,6 +185,9 @@ class AnacondaBackend: log.warning("getRequiredMedia not implmented for backend!") pass + def complete(self, anaconda): + pass + def doRepoSetup(anaconda): anaconda.backend.doInitialSetup(anaconda) if anaconda.backend.doRepoSetup(anaconda) == DISPATCH_BACK: -- cgit