summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-03-04 15:57:34 +0000
committerJeremy Katz <katzj@redhat.com>2006-03-04 15:57:34 +0000
commit7fec57695356bbbed00cd37e24bf97d5576f79aa (patch)
treea027cb0effd189d6235a46a221f9097cd621c507 /backend.py
parent6e70b372714c9abfb40b4ab17ca426b9d78e8461 (diff)
downloadanaconda-7fec57695356bbbed00cd37e24bf97d5576f79aa.tar.gz
anaconda-7fec57695356bbbed00cd37e24bf97d5576f79aa.tar.xz
anaconda-7fec57695356bbbed00cd37e24bf97d5576f79aa.zip
2006-03-04 Jeremy Katz <katzj@redhat.com>
* backend.py (doPostSelection): Pass direction * dispatch.py (installSteps): Likewise. * yuminstall.py (doPostSelection): Likewise.
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend.py b/backend.py
index 8e75b97f2..4a29f75ba 100644
--- a/backend.py
+++ b/backend.py
@@ -39,7 +39,7 @@ class AnacondaBackend:
def doPreSelection(self, intf, id, instPath):
pass
- def doPostSelection(self, intf, id, instPath):
+ def doPostSelection(self, intf, id, instPath, dir):
pass
def doPreInstall(self, intf, id, instPath, dir):
@@ -149,8 +149,8 @@ def doRepoSetup(backend, intf, id, instPath):
if id.upgrade:
backend.checkSupportedUpgrade(intf, instPath)
-def doPostSelection(backend, intf, id, instPath):
- return backend.doPostSelection(intf, id, instPath)
+def doPostSelection(backend, intf, id, instPath, dir):
+ return backend.doPostSelection(intf, id, instPath, dir)
def doPreInstall(backend, intf, id, instPath, dir):
backend.doPreInstall(intf, id, instPath, dir)