aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools/rr.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/cachetools/rr.py')
-rw-r--r--src/cachetools/rr.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cachetools/rr.py b/src/cachetools/rr.py
index f49e185..81331bc 100644
--- a/src/cachetools/rr.py
+++ b/src/cachetools/rr.py
@@ -3,5 +3,7 @@ import warnings
from . import RRCache
warnings.warn(
- "cachetools.rr is deprecated, please use cachetools.RRCache", DeprecationWarning
+ "cachetools.rr is deprecated, please use cachetools.RRCache",
+ DeprecationWarning,
+ stacklevel=2,
)