summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-09-15 21:26:52 (GMT)
committerGuido van Rossum <guido@python.org>1991-09-15 21:26:52 (GMT)
commit944e76fb3c6e1a51816f346b9138fc2cc7263467 (patch)
tree15f116e2f19e227a57f237d68840b388902c0b7f
parent5b39796eca2f0abdf156bd0f7336a44b96effe8a (diff)
downloadcpython-944e76fb3c6e1a51816f346b9138fc2cc7263467.zip
cpython-944e76fb3c6e1a51816f346b9138fc2cc7263467.tar.gz
cpython-944e76fb3c6e1a51816f346b9138fc2cc7263467.tar.bz2
Fix typo.
-rwxr-xr-xDemo/sgi/al/names.py3
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'