From c91bf1c40031a096c5571931ee89dc59547b1ff7 Mon Sep 17 00:00:00 2001 From: sidya82 Date: Wed, 2 Apr 2014 17:43:02 +0200 Subject: [PATCH] =?UTF-8?q?=09modifi=C3=A9:=20=20=20=20=20=20=20=20=20supe?= =?UTF-8?q?rTornado.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- superTornado.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/superTornado.py b/superTornado.py index 4caa523..daaf13a 100644 --- a/superTornado.py +++ b/superTornado.py @@ -253,11 +253,12 @@ class WSocketHandler(BaseHandler,tornado.websocket.WebSocketHandler): data = "" isData = False for ligne in f: - if ligne == "--MOBOTIX_Fast_Serverpush--\n": + ligne = ligne.rstrip('\r\n') + if ligne == "--MOBOTIX_Fast_Serverpush--": isData = False if isData == True : data = data + ligne.read() - if ligne == "ENDSECTION EVENT\n": + if ligne == "ENDSECTION EVENT": isData = True temp.write(f.read()) encoded = base64.b64encode(data)