aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/permissions.py
diff options
context:
space:
mode:
authorTom Christie2011-06-14 10:31:18 +0100
committerTom Christie2011-06-14 10:31:18 +0100
commitfb26b11a75502ce4ec22b6e71d9c05964fa0e5d9 (patch)
tree3cf5d5487b839b92db78add6024f25063ac90e6c /djangorestframework/permissions.py
parent612d335c4c8b152b573db24c76917018a936d758 (diff)
downloaddjango-rest-framework-fb26b11a75502ce4ec22b6e71d9c05964fa0e5d9.tar.bz2
Add PerViewThrottling and PerResourceThrottling to __all__
Diffstat (limited to 'djangorestframework/permissions.py')
-rw-r--r--djangorestframework/permissions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/permissions.py b/djangorestframework/permissions.py
index 7e19c6cd..56bc9697 100644
--- a/djangorestframework/permissions.py
+++ b/djangorestframework/permissions.py
@@ -15,8 +15,8 @@ __all__ = (
'IsAuthenticated',
'IsAdminUser',
'IsUserOrIsAnonReadOnly',
- 'PerUserThrottling'
- 'PerViewThrottling'
+ 'PerUserThrottling',
+ 'PerViewThrottling',
'PerResourceThrottling'
)