On Tue, 2004-04-27 at 09:35, Pathik Patel wrote: > I got following error while customizing the Red Hat9.0 > installer for my company, > > Traceback (most recent call last): > File "/usr/lib/anaconda/gui.py", line 936, in > handleRenderCallback > self.currentWindow.renderCallback() > File "/usr/lib/anaconda/iw/progress_gui.py", line > 155, in renderCallback > self.intf.icw.nextClicked() > File "/usr/lib/anaconda/gui.py", line 761, in > nextClicked > self.dispatch.gotoNext() > File "/usr/lib/anaconda/dispatch.py", line 157, in > gotoNext > self.moveStep() > File "/usr/lib/anaconda/dispatch.py", line 225, in > moveStep > rc = apply(func, self.bindArgs(args)) > File "/usr/lib/anaconda/packages.py", line 817, in > doInstall > problems = ts.run(cb.cb, 0) > File "/usr/lib/anaconda/packages.py", line 308, in > cb > self.progress.setPackage(h) > File "/usr/lib/anaconda/iw/progress_gui.py", line > 133, in setPackage > self.adbox.show_all() > AttributeError: InstallProgressWindow instance has no > attribute 'adbox' > * couldn't get a pix Where exactly did this error occur? Did you take a look at the code on line 133 of "/usr/lib/anaconda/iw/progress_gui.py"? It looks like it is trying this: pix = self.ics.readPixmapDithered (self.pixmaps[num], 425, 225) but not finding it. What did you add/remove from your customized distribution? Forrest