diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1995-04-06 14:46:31 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1995-04-06 14:46:31 (GMT) |
commit | f1bb33495024232d3b7d0d852436c66a875e21b2 (patch) | |
tree | 429c70fa3c7529a20d60505ad6a6b715512a4957 /Demo/sgi/cd/cdaiff.py | |
parent | d8953cb8d93e8e2f52521a91fa1b090fb52c4e5c (diff) | |
download | cpython-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-x | Demo/sgi/cd/cdaiff.py | 4 |
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() |