Add tracebackhide to function call form of deprecated_call

This commit is contained in:
Bruno Oliveira 2017-06-22 08:54:39 -03:00
parent 620ba5971f
commit ff8dbd0ad8
1 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ def deprecated_call(func=None, *args, **kwargs):
if not func:
return _DeprecatedCallContext()
else:
__tracebackhide__ = True
with _DeprecatedCallContext():
return func(*args, **kwargs)