summaryrefslogtreecommitdiff
path: root/Tools/faqwiz
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-06-03 22:03:22 +0000
committerGuido van Rossum <guido@python.org>1997-06-03 22:03:22 +0000
commitc51dca2cb86e5f428f07e845bfff8cd54575fb79 (patch)
treea48a1be836841a636c5967851e15a4418bbe3e74 /Tools/faqwiz
parentf22fda53ddb4c345cdfbdbffc1bf4ab3746e5709 (diff)
downloadcpython-c51dca2cb86e5f428f07e845bfff8cd54575fb79.tar.gz
Move the second import of faqcust to the very end.
Diffstat (limited to 'Tools/faqwiz')
-rw-r--r--Tools/faqwiz/faqconf.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Tools/faqwiz/faqconf.py b/Tools/faqwiz/faqconf.py
index dce947f72f..27ddcf9e0d 100644
--- a/Tools/faqwiz/faqconf.py
+++ b/Tools/faqwiz/faqconf.py
@@ -46,7 +46,7 @@ entries marked with * were changed within the last 7 days.)
# 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
@@ -78,13 +78,6 @@ except ImportError:
COOKIE_NAME = SHORTNAME + "-FAQ-Wizard" # Name used for Netscape cookie
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
@@ -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
placed inside &lt;PRE&gt;...&lt;/PRE&gt;.
"""
+
+# Load local customizations again, in case they set some other variables
+
+try:
+ from faqcust import *
+except ImportError:
+ pass