commit | f1bb33495024232d3b7d0d852436c66a875e21b2 | [log] [tgz] |
---|---|---|
author | Sjoerd Mullender <sjoerd@acm.org> | Thu Apr 06 14:46:31 1995 +0000 |
committer | Sjoerd Mullender <sjoerd@acm.org> | Thu Apr 06 14:46:31 1995 +0000 |
tree | 429c70fa3c7529a20d60505ad6a6b715512a4957 | |
parent | d8953cb8d93e8e2f52521a91fa1b090fb52c4e5c [diff] [blame] |
Use variables from module cd instead of CD.
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 readcd import aifc import AL -import CD +import cd Error = 'cdaiff.Error' @@ -26,7 +26,7 @@ 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()