diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-03 19:17:42 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-03 19:17:42 +0000 |
commit | d336694e96c570fea46b708993a957bad83e96f3 (patch) | |
tree | 6a00a1440921120f70e90b244a39fa44e2595204 | |
parent | aabda1b880d50b45ab56a675fedf493beb87596f (diff) | |
download | anaconda-d336694e96c570fea46b708993a957bad83e96f3.tar.gz anaconda-d336694e96c570fea46b708993a957bad83e96f3.tar.xz anaconda-d336694e96c570fea46b708993a957bad83e96f3.zip |
fixed
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -166,7 +166,7 @@ class InstallInterface: def exceptionWindow(self, (type, value, tb)): import traceback - print_exception (type, value, tb) + traceback.print_exception (type, value, tb) def run (self, todo): sys.setcheckinterval (0) @@ -191,7 +191,7 @@ class InstallInterface: start_new_thread (icw.run, ()) self.mutex.acquire () - todo.liloLocation("hda") + todo.setLiloLocation("hda") class InstallControlWindow: |