summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-05-25 18:59:20 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-05-25 18:59:20 +0000
commit770242c3d300f1b478df446f899b1c13e830ead7 (patch)
tree8062df5c9371844ab2f9e861f3291d11aeac4a38 /anaconda
parent553d42ea7e643d822f57b5fa6c4c0a4eec04602f (diff)
downloadanaconda-770242c3d300f1b478df446f899b1c13e830ead7.tar.gz
anaconda-770242c3d300f1b478df446f899b1c13e830ead7.tar.xz
anaconda-770242c3d300f1b478df446f899b1c13e830ead7.zip
* anaconda (__main__): Pass reference to anaconda rather than id and
dispatch references when calling anaconda.intf.run(). * cmdline.py (InstallInterface.run): Changes to account for receiving a reference to the anaconda object rather than an id and dispatch object. * gui.py (InstallInterface.run): Likewise. * text.py (InstallInterface.run): Likewise. * gui.py (InstallControlWindow.releaseNotesButtonClicked): Pass reference to anaconda object to the ReleaseNotesViewerThread object.
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 28d5b83c5..e3ea61eff 100755
--- a/anaconda
+++ b/anaconda
@@ -948,7 +948,7 @@ if __name__ == "__main__":
sys.excepthook = lambda type, value, tb, anaconda=anaconda: handleException(anaconda, (type, value, tb))
try:
- anaconda.intf.run(anaconda.id, anaconda.dispatch)
+ anaconda.intf.run(anaconda)
except SystemExit, code:
anaconda.intf.shutdown()
except: