summaryrefslogtreecommitdiffstats
path: root/pyanaconda/backend.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2011-02-21 12:21:10 -0600
committerDavid Lehman <dlehman@redhat.com>2011-02-21 13:07:52 -0600
commitf31c0ad23794ed115a25c698e9adbb9c337f7493 (patch)
tree502e76d497bf45acbcea288002ab224ff7c6a840 /pyanaconda/backend.py
parent900756cad358f443028ecbec0882651dbba5e433 (diff)
downloadanaconda-f31c0ad23794ed115a25c698e9adbb9c337f7493.tar.gz
anaconda-f31c0ad23794ed115a25c698e9adbb9c337f7493.tar.xz
anaconda-f31c0ad23794ed115a25c698e9adbb9c337f7493.zip
Correct the return values of some backend base class methods. (#679107)
Diffstat (limited to 'pyanaconda/backend.py')
-rw-r--r--pyanaconda/backend.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyanaconda/backend.py b/pyanaconda/backend.py
index b5a732358..965db8ef9 100644
--- a/pyanaconda/backend.py
+++ b/pyanaconda/backend.py
@@ -145,6 +145,7 @@ class AnacondaBackend:
def groupExists(self, group):
log.warning("groupExists not implemented for backend!")
+ return True
def selectGroup(self, group, *args):
log.warning("selectGroup not implemented for backend!")
@@ -154,6 +155,7 @@ class AnacondaBackend:
def packageExists(self, pkg):
log.warning("packageExists not implemented for backend!")
+ return True
def selectPackage(self, pkg, *args):
log.warning("selectPackage not implemented for backend!")
@@ -163,6 +165,7 @@ class AnacondaBackend:
def getDefaultGroups(self, anaconda):
log.warning("getDefaultGroups not implemented for backend!")
+ return []
def resetPackageSelections(self):
# we just leave this one unimplemented if it's not needed