Commit 4474de49 by David Ormsbee

restore adding askbot-devel to the pythonpath

parent 7de2c6fa
...@@ -3,9 +3,6 @@ import sys ...@@ -3,9 +3,6 @@ import sys
import djcelery import djcelery
import askbot
import site
COURSEWARE_ENABLED = True COURSEWARE_ENABLED = True
ASKBOT_ENABLED = True ASKBOT_ENABLED = True
...@@ -180,6 +177,10 @@ if 'ASKBOT_EXTRA_SKINS_DIR' not in locals(): ...@@ -180,6 +177,10 @@ if 'ASKBOT_EXTRA_SKINS_DIR' not in locals():
if 'ASKBOT_DIR' not in locals(): if 'ASKBOT_DIR' not in locals():
ASKBOT_DIR = BASE_DIR+'/askbot-devel' ASKBOT_DIR = BASE_DIR+'/askbot-devel'
sys.path.append(ASKBOT_DIR)
import askbot
import site
STATICFILES_DIRS = STATICFILES_DIRS + ( ASKBOT_DIR+'/askbot/skins',) STATICFILES_DIRS = STATICFILES_DIRS + ( ASKBOT_DIR+'/askbot/skins',)
# Needed for Askbot # Needed for Askbot
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment