mirror of https://github.com/morpheus65535/bazarr
Remove bottle debug mode when not executed in pycharm.
This commit is contained in:
parent
dd87c1bffe
commit
54b39bf4a4
|
@ -74,8 +74,11 @@ if get_proxy_settings()[0] != 'None':
|
|||
from bottle import route, run, template, static_file, request, redirect, response, HTTPError, app, hook
|
||||
import bottle
|
||||
bottle.TEMPLATE_PATH.insert(0, os.path.join(os.path.dirname(__file__), '../views/'))
|
||||
bottle.debug(True)
|
||||
bottle.TEMPLATES.clear()
|
||||
if "PYCHARM_HOSTED" in os.environ:
|
||||
bottle.debug(True)
|
||||
bottle.TEMPLATES.clear()
|
||||
else:
|
||||
bottle.ERROR_PAGE_TEMPLATE = bottle.ERROR_PAGE_TEMPLATE.replace('if DEBUG and', 'if')
|
||||
|
||||
from cherrypy.wsgiserver import CherryPyWSGIServer
|
||||
|
||||
|
|
Loading…
Reference in New Issue