diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 1994-06-07 14:44:02 +0000 | 
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 1994-06-07 14:44:02 +0000 | 
| commit | 26c86abb4b1d031770d8f8eb01850893bf0594aa (patch) | |
| tree | bbb1c4aec9a3d81715576eae331aa22a415e4419 | |
| parent | abe173a2255aa56413fd2b0e62b8ca8b314464d0 (diff) | |
| download | cpython-git-26c86abb4b1d031770d8f8eb01850893bf0594aa.tar.gz | |
Fixed faulty apply call
| -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 0e2edc63ab..535a7da3eb 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: | 
