Move the second import of faqcust to the very end.

This commit is contained in:
Guido van Rossum 1997-06-03 22:03:22 +00:00
parent 876736cd0d
commit 5bf4d00887

View file

@ -46,7 +46,7 @@ entries marked with * were changed within the last 7 days.)
# Version -- don't change unless you edit faqwiz.py # Version -- don't change unless you edit faqwiz.py
WIZVERSION = "0.5" # FAQ Wizard version WIZVERSION = "0.6" # FAQ Wizard version
# This parameter is normally overwritten with a dynamic value # This parameter is normally overwritten with a dynamic value
@ -78,13 +78,6 @@ except ImportError:
COOKIE_NAME = SHORTNAME + "-FAQ-Wizard" # Name used for Netscape cookie COOKIE_NAME = SHORTNAME + "-FAQ-Wizard" # Name used for Netscape cookie
FAQNAME = SHORTNAME + " FAQ" # Name of the FAQ FAQNAME = SHORTNAME + " FAQ" # Name of the FAQ
# Load local customizations again, in case they set COOKIE_NAME or FAQNAME
try:
from faqcust import *
except ImportError:
pass
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# Anything below this point normally needn't be changed; you would # Anything below this point normally needn't be changed; you would
@ -543,3 +536,10 @@ Any line that begins with a space or tab is assumed to be part of
literal text. Blocks of literal text delineated by blank lines are literal text. Blocks of literal text delineated by blank lines are
placed inside <PRE>...</PRE>. placed inside <PRE>...</PRE>.
""" """
# Load local customizations again, in case they set some other variables
try:
from faqcust import *
except ImportError:
pass