This repository was archived by the owner on Sep 12, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
import sys
7
7
8
8
from . import toolkit
9
- from .extras import bugsnag
10
9
from .extras import cors
10
+ from .extras import ebugsnag
11
11
from .lib import config
12
12
from .server import __version__
13
13
import flask
@@ -80,7 +80,7 @@ def init():
80
80
mail_handler .setLevel (logging .ERROR )
81
81
app .logger .addHandler (mail_handler )
82
82
# Optional bugsnag support
83
- bugsnag .boot (app , cfg .bugsnag , cfg .flavor , __version__ )
83
+ ebugsnag .boot (app , cfg .bugsnag , cfg .flavor , __version__ )
84
84
# Optional cors support
85
85
cors .boot (app , cfg .cors )
86
86
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 8
8
9
9
# start new relic if instructed to do so
10
10
from .extensions import factory
11
- from .extras import newrelic
11
+ from .extras import enewrelic
12
12
from .server import env
13
- newrelic .boot (env .source ('NEW_RELIC_CONFIG_FILE' ),
14
- env .source ('NEW_RELIC_LICENSE_KEY' ))
13
+ enewrelic .boot (env .source ('NEW_RELIC_CONFIG_FILE' ),
14
+ env .source ('NEW_RELIC_LICENSE_KEY' ))
15
15
factory .boot ()
16
16
17
17
import logging
You can’t perform that action at this time.
0 commit comments