caravel: catch only ImportError when loading config (#559)

As you may want to see the exception raised on at leasts SyntaxError
This commit is contained in:
Riccardo Magliocchetti 2016-06-03 18:46:03 +02:00 committed by Maxime Beauchemin
parent 3ee9a68c09
commit fe402465b1
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ BACKUP_COUNT = 30
try:
from caravel_config import * # noqa
except Exception:
except ImportError:
pass
if not CACHE_DEFAULT_TIMEOUT: