From 80c81dddbda0010638c363101619eefe6c435758 Mon Sep 17 00:00:00 2001 From: Yuekui Date: Fri, 17 Jun 2022 17:22:02 -0700 Subject: [PATCH] Fix "`" typo --- rest_framework/throttling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/throttling.py b/rest_framework/throttling.py index e262b886b..aee83b567 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -237,7 +237,7 @@ class ScopedRateThrottle(SimpleRateThrottle): If `view.throttle_scope` is not set, don't apply this throttle. Otherwise generate the unique cache key by concatenating the user id - with the '.throttle_scope` property of the view. + with the `.throttle_scope` property of the view. """ if request.user.is_authenticated: ident = request.user.pk