diff options
author | Guido van Rossum <guido@python.org> | 1993-03-02 12:16:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-03-02 12:16:56 (GMT) |
commit | f48b419a075dc237eb145e1b71cec12afdb7aff4 (patch) | |
tree | ef6262508f4a2876022663bf4dd392e2cd5e100f /Demo | |
parent | 2d413788cae12576adb965f9b2b5d379b509481c (diff) | |
download | cpython-f48b419a075dc237eb145e1b71cec12afdb7aff4.zip cpython-f48b419a075dc237eb145e1b71cec12afdb7aff4.tar.gz cpython-f48b419a075dc237eb145e1b71cec12afdb7aff4.tar.bz2 |
Fix syntax error (sorry!)
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/sgi/video/Vrec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/video/Vrec.py b/Demo/sgi/video/Vrec.py index a78490f..164e89e 100755 --- a/Demo/sgi/video/Vrec.py +++ b/Demo/sgi/video/Vrec.py @@ -265,7 +265,7 @@ def record(v, info, filename, audiofilename, mono, grey, greybits, \ vout.setformat(format) vout.setsize(x, y) if fields: - vout.setpf(1, -2)) + vout.setpf((1, -2)) vout.writeheader() if preallocspace: print 'Preallocating space...' |