From 5c43dde0ec0917673bb280bcd7ab0c37b78061b7 Mon Sep 17 00:00:00 2001 From: Vlad Dmitrievich <2tunnels@gmail.com> Date: Thu, 9 Jan 2020 17:11:28 +0200 Subject: [PATCH] typo in configuration docs (#789) --- docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.md b/docs/config.md index aa8d5378..7a93b22e 100644 --- a/docs/config.md +++ b/docs/config.md @@ -85,7 +85,7 @@ type is useful. CommaSeparatedStrings(['127.0.0.1', 'localhost']) >>> print(list(settings.ALLOWED_HOSTS)) ['127.0.0.1', 'localhost'] ->>> print(len(settings.ALLOWED_HOSTS[0])) +>>> print(len(settings.ALLOWED_HOSTS)) 2 >>> print(settings.ALLOWED_HOSTS[0]) '127.0.0.1'