Remove unnecessary intermediate variable ip.
This commit is contained in:
parent
7f8a007e2d
commit
47c4790d36
1 changed files with 1 additions and 2 deletions
|
@ -78,8 +78,7 @@ site.route = decorate_and_route
|
||||||
|
|
||||||
@site.before_request
|
@site.before_request
|
||||||
def before_request():
|
def before_request():
|
||||||
ip = request.remote_addr
|
request.is_localhost = (request.remote_addr == '127.0.0.1')
|
||||||
request.is_localhost = ip == '127.0.0.1'
|
|
||||||
if site.localhost_only and not request.is_localhost:
|
if site.localhost_only and not request.is_localhost:
|
||||||
flask.abort(403)
|
flask.abort(403)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue