Comment #1 on issue 601 by pekka.klarck: RIDE 0.26 crashes on startup
http://code.google.com/p/robotframework/issues/detail?id=601
The problem seems to appear when reporting parsing errors. I'm not sure
what's the correct fix for this, but changing `index = line.index(':') + 1`
in logger.py to following ought to allow RIDE to start.
try:
index = line.index(':') + 1
except ValueError:
index = 0
Could you Martin try that and report what caused the original parsing
error? Could you also submit this to RIDE's own tracker?