From 72df223b3a6d13d1ddbf570f864fbc6b0d1f37c4 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Tue, 21 Oct 2008 20:10:34 +0000 Subject: [PATCH] Fix the os_path reference, should be os.path. --- settings.py.dist | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/settings.py.dist b/settings.py.dist index 79743f484b..c2ddbaad0b 100755 --- a/settings.py.dist +++ b/settings.py.dist @@ -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"