From 3dc28ea9f29ec044fd54faa82069ba465347e70f Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 14 Dec 2022 21:43:24 -0700 Subject: Fix gs:// settings schema --- takahe/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/takahe/settings.py b/takahe/settings.py index ee3854c..4e09a10 100644 --- a/takahe/settings.py +++ b/takahe/settings.py @@ -28,7 +28,7 @@ class ImplicitHostname(AnyUrl): class MediaBackendUrl(AnyUrl): host_required = False - allowed_schemes = {"s3", "gcs", "local"} + allowed_schemes = {"s3", "gs", "local"} def as_bool(v: str | list[str] | None): -- cgit v1.2.3