From 00494bfa15b4eb04ebc665b193d6f6d74e851805 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 30 May 1997 11:50:36 +0000 Subject: [PATCH] Inclide the imports and chdir in the try/except. --- Tools/faqwiz/faqw.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tools/faqwiz/faqw.py b/Tools/faqwiz/faqw.py index 6677bae7157..0597c54865f 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)