Commit 750f790e63ec447006eed095debb069d7d799a5c
Committed by
Gust
1 parent
6011a1d0
Exists in
master
and in
34 other branches
Fixing flake8
Signed-off-by: Gustavo Jaruga <darksshades@gmail.com>
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
colab/settings.py
@@ -285,7 +285,7 @@ locals().update(load_yaml_settings()) | @@ -285,7 +285,7 @@ locals().update(load_yaml_settings()) | ||
285 | 285 | ||
286 | if locals().get('RAVEN_DSN', False): | 286 | if locals().get('RAVEN_DSN', False): |
287 | RAVEN_CONFIG = { | 287 | RAVEN_CONFIG = { |
288 | - 'dsn': RAVEN_DSN + '?timeout=30', | 288 | + 'dsn': RAVEN_DSN + '?timeout=30', # noqa |
289 | } | 289 | } |
290 | INSTALLED_APPS += ('raven.contrib.django.raven_compat',) | 290 | INSTALLED_APPS += ('raven.contrib.django.raven_compat',) |
291 | 291 | ||
@@ -330,4 +330,3 @@ try: | @@ -330,4 +330,3 @@ try: | ||
330 | from plugin_configs import * # noqa (flake8 ignore) | 330 | from plugin_configs import * # noqa (flake8 ignore) |
331 | except ImportError: | 331 | except ImportError: |
332 | pass | 332 | pass |
333 | - |