diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-21 22:11:45 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-21 22:11:45 (GMT) |
commit | 2bc4a47c865898d346c6044e6a6d55f3e070524b (patch) | |
tree | f5930a37628fcaa6d19e29b1ac2da36515ab92f1 | |
parent | 036f999669d9d32e74442c9b5e5ba94a85ae282c (diff) | |
download | cpython-2bc4a47c865898d346c6044e6a6d55f3e070524b.zip cpython-2bc4a47c865898d346c6044e6a6d55f3e070524b.tar.gz cpython-2bc4a47c865898d346c6044e6a6d55f3e070524b.tar.bz2 |
WASTEconst.py goes one level above the toolbox directory.
-rw-r--r-- | Mac/Modules/waste/wastescan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/waste/wastescan.py b/Mac/Modules/waste/wastescan.py index bb186aa..1d7bdcb 100644 --- a/Mac/Modules/waste/wastescan.py +++ b/Mac/Modules/waste/wastescan.py @@ -19,7 +19,7 @@ OBJECT2 = "WEObjectReference" def main(): input = WASTEDIR + "WASTE.h" output = SHORT + "gen.py" - defsoutput = TOOLBOXDIR + "WASTEconst.py" + defsoutput = os.path.join(os.path.split(TOOLBOXDIR)[0], "WASTEconst.py") scanner = MyScanner(input, output, defsoutput) scanner.scan() ## scanner.gentypetest(SHORT+"typetest.py") |