Oops. Small but egregious error in index.py,
patch attached to this message.

--Bob

On Thu, Jul 19, 2001 at 07:44:25PM -0400, Bob Drzyzgula wrote:
> Ron,
> 
> 1. Grab http://www.snappity.com/linuxbios/webconfig-0.2.tar.gz
--- index.py.old        Thu Jul 19 19:15:08 2001
+++ index.py    Thu Jul 19 20:06:30 2001
@@ -51,9 +51,12 @@
        print '</select><br>'
        if mfr:
                print 'Motherboard: <select name="motherboard">'
-               if not mb:
-                       print '<option selected label="none" 
value="none">None</option>'
                mblist = os.listdir(mfr)
+               if mb:
+                       if not mb in mblist:
+                               print '<option selected label="none" 
+value="none">None</option>'
+               else:
+                       print '<option selected label="none" 
+value="none">None</option>'
                for mb_item in mblist:
                        if mb_item == "CVS":
                                continue

Reply via email to