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 66import sys
77
88from . import toolkit
9- from .extras import bugsnag
109from .extras import cors
10+ from .extras import ebugsnag
1111from .lib import config
1212from .server import __version__
1313import flask
@@ -80,7 +80,7 @@ def init():
8080 mail_handler .setLevel (logging .ERROR )
8181 app .logger .addHandler (mail_handler )
8282 # Optional bugsnag support
83- bugsnag .boot (app , cfg .bugsnag , cfg .flavor , __version__ )
83+ ebugsnag .boot (app , cfg .bugsnag , cfg .flavor , __version__ )
8484 # Optional cors support
8585 cors .boot (app , cfg .cors )
8686
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 88
99# start new relic if instructed to do so
1010from .extensions import factory
11- from .extras import newrelic
11+ from .extras import enewrelic
1212from .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' ))
1515factory .boot ()
1616
1717import logging
You can’t perform that action at this time.
0 commit comments