From d86c90fa7389a5306f573426a7eda612e6b6b0f4 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 27 Jan 2015 14:25:40 +0000 Subject: [PATCH] Blacklist the test module by default. --- web/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/config.py b/web/config.py index a17157401..34c881499 100644 --- a/web/config.py +++ b/web/config.py @@ -34,7 +34,7 @@ APP_VERSION = '%s.%s.%s-%s' % (APP_MAJOR, APP_MINOR, APP_REVISION, APP_SUFFIX) # DO NOT CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING! # List of modules to skip when dynamically loading -MODULE_BLACKLIST = [ ] +MODULE_BLACKLIST = [ 'test' ] ########################################################################## # Log settings