Inclide the imports and chdir in the try/except.
diff --git a/Tools/faqwiz/faqw.py b/Tools/faqwiz/faqw.py
index 6677bae..0597c54 100755
--- a/Tools/faqwiz/faqw.py
+++ b/Tools/faqwiz/faqw.py
@@ -1,11 +1,11 @@
 #! /usr/local/bin/python
 import posix
 t1 = posix.times()
-FAQDIR = "/usr/people/guido/python/FAQ"
-import os, sys, time, operator
-os.chdir(FAQDIR)
-sys.path.insert(0, FAQDIR)
 try:
+    FAQDIR = "/usr/people/guido/python/FAQ"
+    import os, sys, time, operator
+    os.chdir(FAQDIR)
+    sys.path.insert(0, FAQDIR)
     import faqwiz
 except SystemExit, n:
     sys.exit(n)