diff options
Diffstat (limited to 'Demo/sgi/video/Vtime.py')
-rwxr-xr-x | Demo/sgi/video/Vtime.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/sgi/video/Vtime.py b/Demo/sgi/video/Vtime.py index 321e233..be161cc 100755 --- a/Demo/sgi/video/Vtime.py +++ b/Demo/sgi/video/Vtime.py @@ -65,7 +65,7 @@ def main(): def process(infilename, outfilename): try: - vin = VFile.BasicVinFile().init(infilename) + vin = VFile.BasicVinFile(infilename) except IOError, msg: sys.stderr.write(infilename + ': I/O error: ' + `msg` + '\n') return 1 @@ -77,7 +77,7 @@ def process(infilename, outfilename): return 1 try: - vout = VFile.BasicVoutFile().init(outfilename) + vout = VFile.BasicVoutFile(outfilename) except IOError, msg: sys.stderr.write(outfilename + ': I/O error: ' + `msg` + '\n') return 1 |