Fix the os_path reference, should be os.path.

This commit is contained in:
Greg Taylor 2008-10-21 20:10:34 +00:00
parent 51a911d048
commit 72df223b3a

View file

@ -1,3 +1,4 @@
import os
import settings_common
# A list of ports to listen on. Can be one or many.
@ -21,7 +22,7 @@ ADMINS = (
MANAGERS = ADMINS
# 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).
# Example: "/home/media/media.lawrence.com"