On Tue, 27 Apr 2004 17:35:40 +0100 (BST) Pathik Patel [Pathik] wrote: Pathik> I got following error while customizing the Red Hat9.0 Pathik> installer for my company, Pathik> Pathik> Traceback (most recent call last): Pathik> File "/usr/lib/anaconda/gui.py", line 936, in Pathik> handleRenderCallback [...] Pathik> self.progress.setPackage(h) Pathik> File "/usr/lib/anaconda/iw/progress_gui.py", line Pathik> 133, in setPackage Pathik> self.adbox.show_all() Pathik> AttributeError: InstallProgressWindow instance has no Pathik> attribute 'adbox' [...] Pathik> Also the install.log was like follow. Pathik> Pathik> * mounting filesystems [...] Pathik> * unable to load rnotes/01-rhl9-instart-hasitall.png Pathik> * couldn't get a pix Pathik> * going to mount /tmp/fd0 on /tmp/crash look like you miss the pictures shown during installation (anaconda-images package). progress_gui.py: num = self.pixcurnum if num >= len(self.pixmaps): num = 0 pix = self.ics.readPixmapDithered (self.pixmaps[num], 425, 225) if pix: if self.adpix: self.adbox.remove (self.adpix) pix.set_alignment (0.5, 0.5) self.adbox.add (pix) self.adpix = pix else: log("couldn't get a pix") self.adbox.show_all() self.pixcurnum = num + 1 self.pixtimer.reset() maybe these 3 last lines should be included in the first part of the 'if pix' to avoid this problem. installation should not abort in case of missing pictures ;-). -- Alain