From 913590ee39fc423822dffbafa518c2e6ded83d6e Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 11 May 2024 15:01:11 -0700 Subject: [PATCH] explain weird use of ellipses magic value --- archivebox/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/core/settings.py b/archivebox/core/settings.py index dca68674..d322f711 100644 --- a/archivebox/core/settings.py +++ b/archivebox/core/settings.py @@ -411,7 +411,7 @@ LOGGING = { # Add default webhook configuration to the User model SIGNAL_WEBHOOKS = { "HOOKS": { - "django.contrib.auth.models.User": ..., + "django.contrib.auth.models.User": ..., # ... is a special value that means "use the default autogenerated hooks" "core.models.Snapshot": ..., "core.models.ArchiveResult": ..., "core.models.Tag": ...,