summaryrefslogtreecommitdiff
path: root/docs/howto/static-files
diff options
context:
space:
mode:
authordjango-bot <ops@djangoproject.com>2023-02-28 20:53:28 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-03-01 13:03:56 +0100
commit14459f80ee3a9e005989db37c26fd13bb6d2fab2 (patch)
treeeb62429ed696ed3a5389f3a676aecfc6d15a99cc /docs/howto/static-files
parent6015bab80e28aef2669f6fac53423aa65f70cb08 (diff)
downloaddjango-14459f80ee3a9e005989db37c26fd13bb6d2fab2.tar.gz
Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.
Diffstat (limited to 'docs/howto/static-files')
-rw-r--r--docs/howto/static-files/index.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index 2f82cf821d..b4cfd03df7 100644
--- a/docs/howto/static-files/index.txt
+++ b/docs/howto/static-files/index.txt
@@ -16,7 +16,7 @@ Configuring static files
#. In your settings file, define :setting:`STATIC_URL`, for example::
- STATIC_URL = 'static/'
+ STATIC_URL = "static/"
#. In your templates, use the :ttag:`static` template tag to build the URL for
the given relative path using the configured ``staticfiles``
@@ -54,7 +54,7 @@ settings file where Django will also look for static files. For example::
STATICFILES_DIRS = [
BASE_DIR / "static",
- '/var/www/static/',
+ "/var/www/static/",
]
See the documentation for the :setting:`STATICFILES_FINDERS` setting for