Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: multiplexer.py

Issue 29345242: Noissue - Adapt quotes for compliance with our coding style in sitescripts (Closed)
Patch Set: Fixed raw string Created May 30, 2016, 8:47 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sitescripts/__init__.py » ('j') | sitescripts/urlfixer/bin/topDomains.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: multiplexer.py
===================================================================
--- a/multiplexer.py
+++ b/multiplexer.py
@@ -24,8 +24,8 @@
def run_simple(host, port, app, **kwargs):
server = make_server(host, port, app)
- print " * Running on http://%s:%i/" % server.server_address
+ print ' * Running on http://%s:%i/' % server.server_address
server.serve_forever()
-if __name__ == "__main__":
- run_simple("localhost", 5000, multiplex, use_reloader=True, use_debugger=True)
+if __name__ == '__main__':
+ run_simple('localhost', 5000, multiplex, use_reloader=True, use_debugger=True)
« no previous file with comments | « no previous file | sitescripts/__init__.py » ('j') | sitescripts/urlfixer/bin/topDomains.py » ('J')

Powered by Google App Engine
This is Rietveld