Source code for octodns.deprecation

#
#
#

from warnings import warn


[docs] def deprecated(message, stacklevel=2): warn(message, DeprecationWarning, stacklevel=stacklevel)