From 851bf3e692d2d1621c16dd78098fb5dab744c4e4 Mon Sep 17 00:00:00 2001 From: Piotr Mitros Date: Mon, 16 Jan 2012 18:19:27 -0500 Subject: [PATCH] Fixed revery in settings.py --- settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 8cd9498b31..a201c5e519 100644 --- a/settings.py +++ b/settings.py @@ -1,5 +1,6 @@ COURSEWARE_ENABLED = True -ASKBOT_ENABLED = False +if 'TRACK_DIR' not in locals(): + ASKBOT_ENABLED = True if not COURSEWARE_ENABLED: ASKBOT_ENABLED = False