From 193a11e3892133eb4afd7557295e5428e34d001e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 14 Aug 1997 20:18:18 +0000 Subject: Add a separate SRC directory and insert it in front of the path. --- Tools/faqwiz/faqw.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ import posix 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) -- cgit v0.12