From f889c9a099bdf225b55e5fa343937e91fdeca6d6 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Mon, 16 Jul 2012 12:36:52 -0400 Subject: [PATCH] Actually exclude things outside of the mitx repo, rather than only including those things --- lms/envs/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/test.py b/lms/envs/test.py index a0a4769026..d52468989e 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -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