Fix the os_path reference, should be os.path.
This commit is contained in:
parent
51a911d048
commit
72df223b3a
1 changed files with 2 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
import os
|
||||||
import settings_common
|
import settings_common
|
||||||
|
|
||||||
# A list of ports to listen on. Can be one or many.
|
# A list of ports to listen on. Can be one or many.
|
||||||
|
|
@ -21,7 +22,7 @@ ADMINS = (
|
||||||
MANAGERS = ADMINS
|
MANAGERS = ADMINS
|
||||||
|
|
||||||
# The path that contains this settings.py file (no trailing slash).
|
# The path that contains this settings.py file (no trailing slash).
|
||||||
BASE_PATH = os_path.abspath(os_path.split(__file__)[0])
|
BASE_PATH = os.path.abspath(os.path.split(__file__)[0])
|
||||||
|
|
||||||
# Absolute path to the directory that holds media (no trailing slash).
|
# Absolute path to the directory that holds media (no trailing slash).
|
||||||
# Example: "/home/media/media.lawrence.com"
|
# Example: "/home/media/media.lawrence.com"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue