From 26c86abb4b1d031770d8f8eb01850893bf0594aa Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 7 Jun 1994 14:44:02 +0000 Subject: [PATCH] Fixed faulty apply call --- Demo/sgi/video/VCR.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo/sgi/video/VCR.py b/Demo/sgi/video/VCR.py index 0e2edc63ab30..535a7da3eb8d 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: -- 2.47.3