Answers for "STATIC_ROOT = os.path.join(BASE_DIR, 'static') NameError: name 'os' is not defined"

0

STATIC_ROOT = os.path.join(BASE_DIR, 'static') NameError: name 'os' is not defined

# settings.py
import os # new
from pathlib import Path
Posted by: Guest on February-27-2021

Code answers related to "STATIC_ROOT = os.path.join(BASE_DIR, 'static') NameError: name 'os' is not defined"

Browse Popular Code Answers by Language