summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInndy <inndy.tw@gmail.com>2016-02-12 20:23:49 +0800
committerInndy <inndy.tw@gmail.com>2016-02-12 20:26:53 +0800
commit73462633d86a2769d35d7a353fcd60634852aacc (patch)
treea88ddcbea658bcbe73843558d3a138a05dd5b015
parent626613ff10789f356a3bb931c2c408a87cbbee3b (diff)
downloadbottle-73462633d86a2769d35d7a353fcd60634852aacc.tar.gz
Fix coding style
This close bottlepy/bottle#823
-rw-r--r--bottle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bottle.py b/bottle.py
index fd560df..d7c9ed5 100644
--- a/bottle.py
+++ b/bottle.py
@@ -1017,7 +1017,7 @@ class Bottle(object):
except HTTPResponse:
return _e()
out = _inner_handle()
- return out;
+ return out
finally:
if isinstance(out, HTTPResponse):
out.apply(response)
@@ -4087,7 +4087,7 @@ local = threading.local()
# Initialize app stack (create first empty Bottle app now deferred until needed)
# BC: 0.6.4 and needed for run()
-apps =app = default_app = AppStack()
+apps = app = default_app = AppStack()
#: A virtual package that redirects import statements.