summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2011-01-21 16:03:27 +0100
committerMarcel Hellkamp <marc@gsites.de>2011-01-21 16:03:27 +0100
commit4e4714a5b51e5805ee738346197c856fb4f4ae2b (patch)
tree9fa833cc1fd72730ad00c8f7f4206876ff7e8b27
parent84d6df0928733fe87a16de21f29b383794bc7b7b (diff)
downloadbottle-4e4714a5b51e5805ee738346197c856fb4f4ae2b.tar.gz
Comments.
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bottle.py b/bottle.py
index aa726c2..e50cb7f 100755
--- a/bottle.py
+++ b/bottle.py
@@ -1496,7 +1496,7 @@ class AppEngineServer(ServerAdapter):
def run(self, handler):
from google.appengine.ext.webapp import util
# A main() function in the handler script enables 'App Caching'.
- # Make sure it is there. This _really_ improves performance.
+ # Lets makes sure it is there. This _really_ improves performance.
module = sys.modules.get('__main__')
if module and not hasattr(module, 'main'):
module.main = lambda: util.run_wsgi_app(handler)