aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resourceexample/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resourceexample/views.py')
-rw-r--r--examples/resourceexample/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resourceexample/views.py b/examples/resourceexample/views.py
index 990c7834..e6b5eeb8 100644
--- a/examples/resourceexample/views.py
+++ b/examples/resourceexample/views.py
@@ -34,7 +34,7 @@ class AnotherExampleView(View):
if int(num) > 2:
return Response(status.HTTP_404_NOT_FOUND)
return "GET request to AnotherExampleResource %s" % num
-
+
def post(self, request, num):
"""
Handle POST requests, with form validation.