mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Fixed faulty apply call
This commit is contained in:
parent
abe173a225
commit
26c86abb4b
1 changed files with 1 additions and 1 deletions
|
|
@ -178,7 +178,7 @@ class VCR:
|
||||||
return
|
return
|
||||||
if self.testready():
|
if self.testready():
|
||||||
if self.cb:
|
if self.cb:
|
||||||
apply(self.cb, self.cb_arg)
|
apply(self.cb, (self.cb_arg,))
|
||||||
|
|
||||||
def _cmd(self, cmd):
|
def _cmd(self, cmd):
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue