From 2051a79da37cd22c3f60ac99f545ae15f28cde55 Mon Sep 17 00:00:00 2001 From: Yuekui Date: Fri, 24 Jun 2022 04:08:18 -0700 Subject: [PATCH] Fix "`" typo (#8529) --- 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