diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-05 15:39:30 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-05 15:39:30 (GMT) |
commit | aaebdd6a02dd4d650b14e2192e327336ecb62a98 (patch) | |
tree | 4afe45b89281ab71ca8d2f66265adc4a09dd5544 /Mac/Modules/help | |
parent | ff8dec7427ac1084ea375bbf904e365138b69aae (diff) | |
download | cpython-aaebdd6a02dd4d650b14e2192e327336ecb62a98.zip cpython-aaebdd6a02dd4d650b14e2192e327336ecb62a98.tar.gz cpython-aaebdd6a02dd4d650b14e2192e327336ecb62a98.tar.bz2 |
Enable building of Carbon toolbox modules with unix-Python.
Diffstat (limited to 'Mac/Modules/help')
-rw-r--r-- | Mac/Modules/help/helpscan.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Mac/Modules/help/helpscan.py b/Mac/Modules/help/helpscan.py index 6932793..fdfd780 100644 --- a/Mac/Modules/help/helpscan.py +++ b/Mac/Modules/help/helpscan.py @@ -2,10 +2,9 @@ import sys import os -BGENDIR=os.path.join(sys.prefix, ':Tools:bgen:bgen') +from bgenlocations import TOOLBOXDIR, BGENDIR sys.path.append(BGENDIR) from scantools import Scanner -from bgenlocations import TOOLBOXDIR LONG = "Balloons" SHORT = "help" |