Add a separate SRC directory and insert it in front of the path.
diff --git a/Tools/faqwiz/faqw.py b/Tools/faqwiz/faqw.py
index 0597c54..8d5ab09 100755
--- a/Tools/faqwiz/faqw.py
+++ b/Tools/faqwiz/faqw.py
@@ -3,9 +3,10 @@
 t1 = posix.times()
 try:
     FAQDIR = "/usr/people/guido/python/FAQ"
+    SRCDIR = "/usr/people/guido/python/Tools/faqwiz"
     import os, sys, time, operator
     os.chdir(FAQDIR)
-    sys.path.insert(0, FAQDIR)
+    sys.path.insert(0, SRCDIR)
     import faqwiz
 except SystemExit, n:
     sys.exit(n)