Actually exclude things outside of the mitx repo, rather than only including those things

This commit is contained in:
Calen Pennington
2012-07-16 12:36:52 -04:00
parent 04469a4e8e
commit f889c9a099

View File

@@ -95,7 +95,7 @@ for static_dir in STATICFILES_DIRS:
except ValueError:
data_dir = static_dir
if not data_dir.startswith(REPO_ROOT):
if data_dir.startswith(REPO_ROOT):
new_staticfiles_dirs.append(static_dir)
STATICFILES_DIRS = new_staticfiles_dirs