summaryrefslogtreecommitdiffstats
path: root/Demo/sgi/cd/cdaiff.py
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>1995-04-06 14:46:31 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>1995-04-06 14:46:31 (GMT)
commitf1bb33495024232d3b7d0d852436c66a875e21b2 (patch)
tree429c70fa3c7529a20d60505ad6a6b715512a4957 /Demo/sgi/cd/cdaiff.py
parentd8953cb8d93e8e2f52521a91fa1b090fb52c4e5c (diff)
downloadcpython-f1bb33495024232d3b7d0d852436c66a875e21b2.zip
cpython-f1bb33495024232d3b7d0d852436c66a875e21b2.tar.gz
cpython-f1bb33495024232d3b7d0d852436c66a875e21b2.tar.bz2
Use variables from module cd instead of CD.
Diffstat (limited to 'Demo/sgi/cd/cdaiff.py')
-rwxr-xr-xDemo/sgi/cd/cdaiff.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/sgi/cd/cdaiff.py b/Demo/sgi/cd/cdaiff.py
index e66f6a4..a1b490f 100755
--- a/Demo/sgi/cd/cdaiff.py
+++ b/Demo/sgi/cd/cdaiff.py
@@ -2,7 +2,7 @@ import sys
import readcd
import aifc
import AL
-import CD
+import cd
Error = 'cdaiff.Error'
@@ -26,7 +26,7 @@ def main():
r.appendstretch(x[0], x[1])
except TypeError:
r.appendtrack(x)
- r.setcallback(CD.AUDIO, writeaudio, a)
+ r.setcallback(cd.audio, writeaudio, a)
r.play()
a.close()