From: Holger Hans Peter Freyther Date: Wed, 8 Mar 2006 13:05:44 +0000 (+0000) Subject: lib/bb/utils.py: X-Git-Tag: 1.4.2~71 X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_bitbake;a=commitdiff_plain;h=f48a54fc1eaddd135dcc235c241476493e34c516;hp=cffd991f8c01ac3840a0f7cd0653182ef55075de lib/bb/utils.py: Do not go past the buffer (this looks like copy and paste) --- diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 9cbef23..978bde2 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -113,7 +113,7 @@ def better_compile(text, file, realfile): # print the environment of the method bb.error("Printing the environment of the function") min_line = max(1,e.lineno-4) - max_line = min(e.lineno+4,len(body)) + max_line = min(e.lineno+4,len(body)-1) for i in range(min_line,max_line+1): bb.error("\t%.4d:%s" % (i, body[i-1]) ) @@ -154,7 +154,7 @@ def better_exec(code, context, text, realfile): # print the environment of the method bb.error("Printing the environment of the function") min_line = max(1,line-4) - max_line = min(line+4,len(body)) + max_line = min(line+4,len(body)-1) for i in range(min_line,max_line+1): bb.error("\t%.4d:%s" % (i, body[i-1]) )