From f8376910f41e4486b4340cd9b69650678cb2883c Mon Sep 17 00:00:00 2001 From: Jeremy Voorhis Date: Mon, 7 Jul 2014 10:53:04 -0700 Subject: [PATCH] s/throtte/throttle/ --- 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 91be9cfd5..b68429f49 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -41,7 +41,7 @@ class SimpleRateThrottle(BaseThrottle): cache = default_cache timer = time.time - cache_format = 'throtte_%(scope)s_%(ident)s' + cache_format = 'throttle_%(scope)s_%(ident)s' scope = None THROTTLE_RATES = api_settings.DEFAULT_THROTTLE_RATES