1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 17:15:35 +00:00
This commit is contained in:
Ivan Malison
2015-08-18 16:26:51 -07:00
parent bd7c6ed03f
commit 8b7e6c0ab8
3 changed files with 9 additions and 5 deletions

View File

@@ -47,14 +47,16 @@ class CassetteContextDecorator(object):
def _patch_generator(self, cassette):
with contextlib.ExitStack() as exit_stack:
for patcher in CassettePatcherBuilder(cassette).build:
exit_stack.enter_contextpatcher
for patcher in CassettePatcherBuilder(cassette).build():
exit_stack.enter_context(patcher)
log_format = '{action} context for cassette at {path}.'
log.debug(log_format.format(
cassette._path
action="Entering", path=cassette._path
))
yield cassette
log.debug('Exiting context for cassette at {0}.'.format(cassette._path))
log.debug(log_format.format(
action="Exiting", path=cassette._path
))
# TODO(@IvanMalison): Hmmm. it kind of feels like this should be
# somewhere else.
cassette._save()