We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2795c2 commit 87bc47dCopy full SHA for 87bc47d
plain/plain/assets/views.py
@@ -15,7 +15,7 @@
15
from plain.urls import reverse
16
from plain.views import View
17
18
-from .compile import FINGERPRINT_LENGTH
+from .compile import FINGERPRINT_LENGTH, get_compiled_path
19
from .finders import find_assets
20
from .fingerprints import get_fingerprinted_url_path
21
@@ -62,7 +62,7 @@ def get(self):
62
63
def get_asset_path(self, path):
64
"""Get the path to the compiled asset"""
65
- compiled_path = os.path.abspath(settings.ASSETS_COMPILED_PATH)
+ compiled_path = os.path.abspath(get_compiled_path())
66
asset_path = os.path.join(compiled_path, path)
67
68
# Make sure we don't try to escape the compiled assests path
0 commit comments