From 24488f849ff23e2b7679a4f98f689e2e780a6102 Mon Sep 17 00:00:00 2001 From: josher19 Date: Mon, 10 Sep 2012 13:43:01 +0800 Subject: [PATCH] Update httpbin/core.py 302 instead of 301 redirect in docs for def relative_redirect_n_times --- httpbin/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/core.py b/httpbin/core.py index c13f3392..ad7c5161 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -162,7 +162,7 @@ def redirect_n_times(n): @app.route('/relative-redirect/') def relative_redirect_n_times(n): - """301 Redirects n times.""" + """302 Redirects n times.""" assert n > 0