Skip to content

Commit 9d2d7af

Browse files
committed
Fix location for static files
Signed-off-by: Matthew Cengia <[email protected]>
1 parent 3f60ed8 commit 9d2d7af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mygpo/settings.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,9 @@ def get_intOrNone(name, default):
8585

8686
# Static Files
8787

88-
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
88+
STATIC_ROOT = os.path.join(BASE_DIR, "..", "static")
8989
STATIC_URL = "/static/"
9090

91-
STATICFILES_DIRS = (os.path.abspath(os.path.join(BASE_DIR, "..", "static")),)
9291

9392

9493
# Media Files

0 commit comments

Comments
 (0)