We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d743fc commit 02112a8Copy full SHA for 02112a8
museum_of_dreams_project/settings/static.py
@@ -1,10 +1,10 @@
1
from storages.backends.s3boto3 import S3Boto3Storage
2
-import aws
+from .aws import STATIC_ROOT, MEDIA_ROOT
3
4
5
class StaticStorage(S3Boto3Storage):
6
- location = aws.STATIC_ROOT
+ location = STATIC_ROOT
7
8
9
class MediaStorage(S3Boto3Storage):
10
- location = aws.MEDIA_ROOT
+ location = MEDIA_ROOT
0 commit comments