From fb71abe534e9183c85883a62b26b6bcf8643c1b0 Mon Sep 17 00:00:00 2001 From: mtcronin99 Date: Tue, 4 Jun 2019 11:21:27 -0400 Subject: [PATCH] Update tour.rst to add quotes around hostnames The API call in the Trusted Hosts section needs quotes around the hostnames in the example. --- docs/source/tour.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tour.rst b/docs/source/tour.rst index 426eac8..8e1a22a 100644 --- a/docs/source/tour.rst +++ b/docs/source/tour.rst @@ -344,7 +344,7 @@ A 400 response will be raised, if a request does not match any of the provided p :: - api = responder.API(allowed_hosts=[example.com, tenant.example.com]) + api = responder.API(allowed_hosts=['example.com', 'tenant.example.com']) * ``allowed_hosts`` - A list of allowed hostnames.