summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-03-03 21:10:45 +0000
committerChris Lumens <clumens@redhat.com>2006-03-03 21:10:45 +0000
commitdb6d0f54f7c41c004ddc36e59b4243233b5f58d8 (patch)
tree6010d363e77fbd9370e5bf3ff2bc1fac37f28769 /backend.py
parent1f23e0863913d7a7bbb00274d5d8436859be632e (diff)
downloadanaconda-db6d0f54f7c41c004ddc36e59b4243233b5f58d8.tar.gz
anaconda-db6d0f54f7c41c004ddc36e59b4243233b5f58d8.tar.xz
anaconda-db6d0f54f7c41c004ddc36e59b4243233b5f58d8.zip
Error if there's not enough disk space to install the selected packages
(#183878).
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.py b/backend.py
index 29900895d..8e75b97f2 100644
--- a/backend.py
+++ b/backend.py
@@ -150,7 +150,7 @@ def doRepoSetup(backend, intf, id, instPath):
backend.checkSupportedUpgrade(intf, instPath)
def doPostSelection(backend, intf, id, instPath):
- backend.doPostSelection(intf, id, instPath)
+ return backend.doPostSelection(intf, id, instPath)
def doPreInstall(backend, intf, id, instPath, dir):
backend.doPreInstall(intf, id, instPath, dir)