Update httpbin/core.py

302 instead of 301 redirect in docs for def relative_redirect_n_times
This commit is contained in:
josher19
2012-09-10 13:43:01 +08:00
parent cfbee2b939
commit 24488f849f
+1 -1
View File
@@ -162,7 +162,7 @@ def redirect_n_times(n):
@app.route('/relative-redirect/<int:n>')
def relative_redirect_n_times(n):
"""301 Redirects n times."""
"""302 Redirects n times."""
assert n > 0