sbsv2/raptor/python/raptor_make.py
branchfix
changeset 411 80ad0c7f75fe
parent 408 a819f9223567
child 457 9bebdb95e0de
child 490 b60bdff41580
equal deleted inserted replaced
410:924ab6786b2f 411:80ad0c7f75fe
    69 	""" A generator that extracts log output from an emake annotation file, 
    69 	""" A generator that extracts log output from an emake annotation file, 
    70 	    perform an XML-unescape on it and "yields" it line by line.  """
    70 	    perform an XML-unescape on it and "yields" it line by line.  """
    71 	af = open(annofile, "r")
    71 	af = open(annofile, "r")
    72 
    72 
    73 	inOutput = False
    73 	inOutput = False
    74 	inParseJob = False
       
    75 
    74 
    76 	buildid = ""
    75 	buildid = ""
    77 	for line in af:
    76 	for line in af:
    78 		line = line.rstrip("\n\r")
    77 		line = line.rstrip("\n\r")
    79 
    78