Skip to content

Commit bc828ab

Browse files
committed
Use absolute path to resolve js i18n locales
fixes an issue on debian
1 parent aecc5cb commit bc828ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def get_from_env(var, default):
8484
ROOT_URLCONF = 'urls'
8585

8686
ROOT_PATH = os.path.dirname(__file__)
87-
BOOTH_PATH = os.path.join('zeus', 'static', 'booth')
87+
BOOTH_PATH = os.path.join(ROOT_PATH, os.path.join('zeus', 'static', 'booth'))
8888
TEMPLATE_DIRS = (
8989
ROOT_PATH,
9090
os.path.join(ROOT_PATH, 'templates')

0 commit comments

Comments
 (0)