Skip to content

Commit 205e7d9

Browse files
committed
Fixed whitespace
1 parent ed2041c commit 205e7d9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/redis-live.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515

1616
# Bootup
1717
application = tornado.web.Application([
18-
(r"/api/servers", ServerListController),
18+
(r"/api/servers", ServerListController),
1919
(r"/api/info", InfoController),
20-
(r"/api/memory", MemoryController),
21-
(r"/api/commands", CommandsController),
22-
(r"/api/topcommands", TopCommandsController),
23-
(r"/api/topkeys", TopKeysController),
20+
(r"/api/memory", MemoryController),
21+
(r"/api/commands", CommandsController),
22+
(r"/api/topcommands", TopCommandsController),
23+
(r"/api/topkeys", TopKeysController),
2424
(r"/(.*)", BaseStaticFileHandler, {"path": "www"})
2525
], debug="True")
2626

2727

2828
if __name__ == "__main__":
2929
application.listen(8888)
30-
tornado.ioloop.IOLoop.instance().start()
30+
tornado.ioloop.IOLoop.instance().start()

0 commit comments

Comments
 (0)