Skip to content

Commit

Permalink
MINIFY
Browse files Browse the repository at this point in the history
  • Loading branch information
milesmcc committed Aug 2, 2017
1 parent 008af3b commit 51f0b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get(self):
"channels": [k[2] for k in configuration.get_accounts()],
"latest": flashes.get_latest_flashes(25)
}
self.write(unicode(json.dumps(data, sort_keys=True)))
self.write(unicode(json.dumps(data, sort_keys=True, separators=(',',':'))))
class ErrorHandler(tornado.web.RequestHandler):
def write_error(self, status_code, **kwargs):
try:
Expand Down

0 comments on commit 51f0b28

Please sign in to comment.