summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-11-01 16:34:21 +0100
committerMichele Simionato <michele.simionato@gmail.com>2021-11-01 16:34:21 +0100
commitbaf129705a56ead40a71b1813003439e06fd1538 (patch)
tree235d99c04758ece4d53b944e5894fe5126ce05ae /src
parent0094c7b282a45aaa234f14b90984ccdc350dc6c5 (diff)
downloadpython-decorator-git-baf129705a56ead40a71b1813003439e06fd1538.tar.gz
Fixed the ContextManager
Diffstat (limited to 'src')
-rw-r--r--src/decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decorator.py b/src/decorator.py
index 7980acf..ac78479 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -313,7 +313,7 @@ class ContextManager(_GeneratorContextManager):
def __call__(self, func):
def caller(f, *a, **k):
- with self._recreate_cm():
+ with self.__class__(self.func, *self.args, **self.kwds):
return f(*a, **k)
return decorate(func, caller)