diff options
author | Andrew Godwin | 2022-12-14 21:43:24 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-14 21:43:24 -0700 |
commit | 3dc28ea9f29ec044fd54faa82069ba465347e70f (patch) | |
tree | 93df20e3a24f38e0525add4d1644b2a14226d2c6 | |
parent | 16005e14ef46c6721f4bf4e01a54e6c1bf0ecdf7 (diff) | |
download | takahe-3dc28ea9f29ec044fd54faa82069ba465347e70f.tar.gz takahe-3dc28ea9f29ec044fd54faa82069ba465347e70f.tar.bz2 takahe-3dc28ea9f29ec044fd54faa82069ba465347e70f.zip |
Fix gs:// settings schema
-rw-r--r-- | takahe/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |