From f715f720326f9dcba9b5ab0493a2ef43894f0617 Mon Sep 17 00:00:00 2001 From: David Wolf <68775926+devidw@users.noreply.github.com> Date: Thu, 14 Apr 2022 17:02:49 +0200 Subject: [PATCH] Add missing `)` to settings docs sample --- docs/settings.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/settings.txt b/docs/settings.txt index dc5b996..50c6a4b 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -58,7 +58,7 @@ URLs, and they can then be verified with the supplied ``signature_required`` wra download = ObjectDownloadView.as_view(model=Document, file_field='file') urlpatterns = [ - path('download//', signature_required(download), + path('download//', signature_required(download)), ] Make sure to test the desired functionality after configuration. @@ -120,4 +120,4 @@ See :doc:`/optimizations/index` for details about builtin backends When ``django_downloadview.SmartDownloadMiddleware`` is in your ``MIDDLEWARE_CLASSES``, this setting must be explicitely configured (no default -value). Else, you can ignore this setting. \ No newline at end of file +value). Else, you can ignore this setting.