Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5bf4d00

Browse files
committed
Move the second import of faqcust to the very end.
1 parent 876736c commit 5bf4d00

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Tools/faqwiz/faqconf.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
# Version -- don't change unless you edit faqwiz.py
4848

49-
WIZVERSION = "0.5" # FAQ Wizard version
49+
WIZVERSION = "0.6" # FAQ Wizard version
5050

5151
# This parameter is normally overwritten with a dynamic value
5252

@@ -78,13 +78,6 @@
7878
COOKIE_NAME = SHORTNAME + "-FAQ-Wizard" # Name used for Netscape cookie
7979
FAQNAME = SHORTNAME + " FAQ" # Name of the FAQ
8080

81-
# Load local customizations again, in case they set COOKIE_NAME or FAQNAME
82-
83-
try:
84-
from faqcust import *
85-
except ImportError:
86-
pass
87-
8881
# ----------------------------------------------------------------------
8982

9083
# Anything below this point normally needn't be changed; you would
@@ -543,3 +536,10 @@
543536
literal text. Blocks of literal text delineated by blank lines are
544537
placed inside <PRE>...</PRE>.
545538
"""
539+
540+
# Load local customizations again, in case they set some other variables
541+
542+
try:
543+
from faqcust import *
544+
except ImportError:
545+
pass

0 commit comments

Comments
 (0)