diff --git a/radicale/web/internal.py b/radicale/web/internal.py index a442752..f21d2bc 100644 --- a/radicale/web/internal.py +++ b/radicale/web/internal.py @@ -28,7 +28,9 @@ Features: import pkg_resources from radicale import config, httputils, types, web -from radicale.httputils import FALLBACK_MIMETYPE, MIMETYPES # noqa:F401 + +MIMETYPES = httputils.MIMETYPES # deprecated +FALLBACK_MIMETYPE = httputils.FALLBACK_MIMETYPE # deprecated class Web(web.BaseWeb):