diff options
author | bfox <bfox> | 2001-01-30 19:56:17 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-01-30 19:56:17 +0000 |
commit | 4a972163a82442a566e7ef98990a9822d8873ba8 (patch) | |
tree | 9c5df1a538c82753025d13d6cdd62395bce87d5f | |
parent | 6d3c9a8d68817d5e0953b0c16ae1792ea95d550d (diff) | |
download | anaconda-4a972163a82442a566e7ef98990a9822d8873ba8.tar.gz anaconda-4a972163a82442a566e7ef98990a9822d8873ba8.tar.xz anaconda-4a972163a82442a566e7ef98990a9822d8873ba8.zip |
Initialized server variable to None, so it won't traceback if card has no server. Resolves bug #25298.
-rw-r--r-- | text.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -495,6 +495,7 @@ class XConfigWindow: "W32", "W32", "Mach64", "I128", "S3V", "3DLabs" ] rc = INSTALL_NOOP + server = None while rc != INSTALL_OK: (rc, choice) = ListboxChoiceWindow(screen, _("Video Card Selection"), _("Which video card do you have?"), |