summaryrefslogtreecommitdiff
path: root/Demo/sgi/video/aplay.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-17 15:11:41 +0000
committerGuido van Rossum <guido@python.org>1993-12-17 15:11:41 +0000
commit21a3ff9d5d9d8cad0bc52cb603df93d38e139840 (patch)
tree533c4f8e2a23ecaa6099c868035b1463881ff1a7 /Demo/sgi/video/aplay.py
parent96b608cf6ddb4c7b670c15a365ed8b14accd5d37 (diff)
downloadcpython-git-21a3ff9d5d9d8cad0bc52cb603df93d38e139840.tar.gz
Uniformly replaced init() functions by __init__() constructors.
A few simple things seem to work, I haven't tested it thouroughly though...
Diffstat (limited to 'Demo/sgi/video/aplay.py')
-rwxr-xr-xDemo/sgi/video/aplay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/video/aplay.py b/Demo/sgi/video/aplay.py
index 5544fbe45d..7b1002722c 100755
--- a/Demo/sgi/video/aplay.py
+++ b/Demo/sgi/video/aplay.py
@@ -55,7 +55,7 @@ def main():
videofile = videofile + '.video'
print 'Opening video input file..'
- vin = VFile.VinFile().init(videofile)
+ vin = VFile.VinFile(videofile)
print 'Opening audio input file..'
ain = aifc.open(audiofile, 'r')