diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1994-06-07 14:44:02 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1994-06-07 14:44:02 (GMT) |
commit | 26c86abb4b1d031770d8f8eb01850893bf0594aa (patch) | |
tree | bbb1c4aec9a3d81715576eae331aa22a415e4419 /Demo | |
parent | abe173a2255aa56413fd2b0e62b8ca8b314464d0 (diff) | |
download | cpython-26c86abb4b1d031770d8f8eb01850893bf0594aa.zip cpython-26c86abb4b1d031770d8f8eb01850893bf0594aa.tar.gz cpython-26c86abb4b1d031770d8f8eb01850893bf0594aa.tar.bz2 |
Fixed faulty apply call
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/sgi/video/VCR.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/video/VCR.py b/Demo/sgi/video/VCR.py index 0e2edc6..535a7da 100755 --- a/Demo/sgi/video/VCR.py +++ b/Demo/sgi/video/VCR.py @@ -178,7 +178,7 @@ class VCR: return if self.testready(): if self.cb: - apply(self.cb, self.cb_arg) + apply(self.cb, (self.cb_arg,)) def _cmd(self, cmd): if DEBUG: |