Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/didip/so-starving into di…
Browse files Browse the repository at this point in the history
…dip-master
  • Loading branch information
shabda committed Nov 9, 2010
2 parents 035f789 + a6b5fed commit 98a48fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tornado/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def on_response(self, response):
return self.render('templates/index.html', data=fb_data)


application = tornado.web.Application([
(r"/", MainHandler),
])
handlers = [(r"/", MainHandler)]
settings = {'debug': True}
application = tornado.web.Application(handlers, **settings)

if __name__ == "__main__":
http_server = tornado.httpserver.HTTPServer(application)
Expand Down

0 comments on commit 98a48fe

Please sign in to comment.