diff options
author | Guido van Rossum <guido@python.org> | 1997-06-02 21:39:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-06-02 21:39:15 (GMT) |
commit | 178f58a17e7f94cb11af2eb8c42221a0107218da (patch) | |
tree | 3d9ace39cc21d159968493645c25a1f3562598c8 /Tools/faqwiz | |
parent | 39a23cc1e36e49838f230f8afd72fc0e893a43af (diff) | |
download | cpython-178f58a17e7f94cb11af2eb8c42221a0107218da.zip cpython-178f58a17e7f94cb11af2eb8c42221a0107218da.tar.gz cpython-178f58a17e7f94cb11af2eb8c42221a0107218da.tar.bz2 |
Stupid typos -- ImporError.
Diffstat (limited to 'Tools/faqwiz')
-rw-r--r-- | Tools/faqwiz/faqconf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/faqwiz/faqconf.py b/Tools/faqwiz/faqconf.py index adea4f2..d01654e 100644 --- a/Tools/faqwiz/faqconf.py +++ b/Tools/faqwiz/faqconf.py @@ -70,7 +70,7 @@ NEWFILENAME = "faq%02d.%03d.htp" try: from faqcust import * -except ImporError: +except ImportError: pass # Calculated parameter names @@ -82,7 +82,7 @@ FAQNAME = SHORTNAME + " FAQ" # Name of the FAQ try: from faqcust import * -except ImporError: +except ImportError: pass # ---------------------------------------------------------------------- |