aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-12-17 20:48:38 +0000
committerTom Christie2014-12-17 20:48:38 +0000
commite684aedffa1f36f35da0ab6179552809d15903fb (patch)
tree3c38658272ad0c03d00d287c2568828919507693
parentdf29641f20c66ac3572d33d6bed23bd0fa3493a6 (diff)
parent4f33cfe1a00b410553ad9705354ada7ee8b52c01 (diff)
downloaddjango-rest-framework-e684aedffa1f36f35da0ab6179552809d15903fb.tar.bz2
Merge pull request #2305 from epicserve/tutorial_4_fixes
With httpie 0.8.0 the HTTP method has to come after the auth argument.
-rw-r--r--docs/tutorial/4-authentication-and-permissions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/4-authentication-and-permissions.md b/docs/tutorial/4-authentication-and-permissions.md
index a6d27bf7..592c77e8 100644
--- a/docs/tutorial/4-authentication-and-permissions.md
+++ b/docs/tutorial/4-authentication-and-permissions.md
@@ -206,7 +206,7 @@ If we try to create a snippet without authenticating, we'll get an error:
We can make a successful request by including the username and password of one of the users we created earlier.
- http POST -a tom:password http://127.0.0.1:8000/snippets/ code="print 789"
+ http -a tom:password POST http://127.0.0.1:8000/snippets/ code="print 789"
{
"id": 5,