Convert bad quotes to only single quote
This commit is contained in:
parent
b9766ce5df
commit
757f991dae
14 changed files with 41 additions and 41 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue