Skip to content

Commit 87bc47d

Browse files
committed
Fix removed settings.ASSETS_COMPILED_PATH
1 parent e2795c2 commit 87bc47d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plain/plain/assets/views.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from plain.urls import reverse
1616
from plain.views import View
1717

18-
from .compile import FINGERPRINT_LENGTH
18+
from .compile import FINGERPRINT_LENGTH, get_compiled_path
1919
from .finders import find_assets
2020
from .fingerprints import get_fingerprinted_url_path
2121

@@ -62,7 +62,7 @@ def get(self):
6262

6363
def get_asset_path(self, path):
6464
"""Get the path to the compiled asset"""
65-
compiled_path = os.path.abspath(settings.ASSETS_COMPILED_PATH)
65+
compiled_path = os.path.abspath(get_compiled_path())
6666
asset_path = os.path.join(compiled_path, path)
6767

6868
# Make sure we don't try to escape the compiled assests path

0 commit comments

Comments
 (0)