From 4ae92390020bbb6724abf77ce7c73189bbbb9d05 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 30 Sep 2013 20:57:21 -0400 Subject: [PATCH] codeblock --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 580bbab..6bce8ce 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Flask-WebSocket WebSockets in Python are really hard. -:: +.. code-block:: python from flask import Flask from flask_websockets import WebSocket @@ -16,7 +16,7 @@ WebSockets in Python are really hard. message = ws.receive() ws.send(message) - @app.route('/'') + @app.route('/') def hello(): return 'Hello World!'