diff options
author | Guido van Rossum <guido@python.org> | 1991-09-15 21:26:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-09-15 21:26:52 (GMT) |
commit | 944e76fb3c6e1a51816f346b9138fc2cc7263467 (patch) | |
tree | 15f116e2f19e227a57f237d68840b388902c0b7f | |
parent | 5b39796eca2f0abdf156bd0f7336a44b96effe8a (diff) | |
download | cpython-944e76fb3c6e1a51816f346b9138fc2cc7263467.zip cpython-944e76fb3c6e1a51816f346b9138fc2cc7263467.tar.gz cpython-944e76fb3c6e1a51816f346b9138fc2cc7263467.tar.bz2 |
Fix typo.
-rwxr-xr-x | Demo/sgi/al/names.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Demo/sgi/al/names.py b/Demo/sgi/al/names.py index e759198..5a8f538 100755 --- a/Demo/sgi/al/names.py +++ b/Demo/sgi/al/names.py @@ -1,3 +1,4 @@ +import sys # My home directory/ GUIDO = '/ufs/guido/' @@ -10,4 +11,4 @@ if LIB not in sys.path: sys.path.insert(0, LIB) PYTHON = GUIDO + 'bin/sgi/python' # Directory where the programs live -AUDIODIR = GUIDO + 'src/python/demo/srg/al' +AUDIODIR = GUIDO + 'src/python/demo/sgi/al' |