From c5c54d4d6486d85a151c6fcd4c5dcdaf2dfbcaf6 Mon Sep 17 00:00:00 2001 From: yvesf Date: Sat, 10 Apr 2010 10:53:59 +0000 Subject: include rev number in egg name git-svn-id: http://10.2.2.13/svn/common/ebus@1640 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- ebus/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ebus/__init__.py') diff --git a/ebus/__init__.py b/ebus/__init__.py index 8b75043..94b0b32 100644 --- a/ebus/__init__.py +++ b/ebus/__init__.py @@ -253,7 +253,7 @@ class EbusReader(asynchat.async_chat): #0xaa bug i = 0 data = "" - while i < len(dataRaw)+1: + while (i+1) < len(dataRaw): if ord(dataRaw[i]) == 0xaa and ord(dataRaw[i+1]) == 0x01: data += "\xaa" i = i + 1 -- cgit v1.2.1