Convert bad quotes to only single quote

This commit is contained in:
Liwink 2016-10-11 16:58:58 +08:00
parent b9766ce5df
commit 757f991dae
14 changed files with 41 additions and 41 deletions

View file

@ -37,9 +37,9 @@ if __name__ == '__main__':
raise tornado.web.HTTPError(404)
application = tornado.web.Application([
(r"/([a-zA-Z0-9\-_]+)", MainHandler),
(r'/([a-zA-Z0-9\-_]+)', MainHandler),
])
if __name__ == "__main__":
if __name__ == '__main__':
application.listen(8888, address='127.0.0.1')
tornado.ioloop.IOLoop.instance().start()