summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNemanja Tozic <nemanjat94@gmail.com>2022-05-25 16:02:42 +0200
committerAsif Saif Uddin <auvipy@gmail.com>2022-05-25 22:27:13 +0600
commit7db45bda96ea6f5fde1186e8fd43d75ce6b95ab5 (patch)
tree9d62f84c08973086cf8612fd8732e7e397b26350
parentb14ad85921db2406ecaf5927a8be08a7566c236e (diff)
downloadoauthlib-7db45bda96ea6f5fde1186e8fd43d75ce6b95ab5.tar.gz
Fix typo in server.rst
missing semicolon
-rw-r--r--docs/oauth2/server.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/oauth2/server.rst b/docs/oauth2/server.rst
index 15420f3..922189b 100644
--- a/docs/oauth2/server.rst
+++ b/docs/oauth2/server.rst
@@ -447,7 +447,7 @@ The example using Django but should be transferable to any framework.
response[k] = v
return response
- def response_from_error(e)
+ def response_from_error(e):
return HttpResponseBadRequest('Evil client is unable to send a proper request. Error is: ' + e.description)