This patch fix some small errors in scan-build-py, including:
- When invoking clang with -### and parsing error add -fno-color-diagnostics to the invocation to avoid problems parsing potential errors. This might be sub-optimal for users expecting to see the results in the command line and expecting to have colors. If we really want this to work I can either make the regex more forgiving or try to restore the -fcolor-diagnosticsflag to its original state after the -### invocation.
- If a file was missing from a compilation database the whole analysis was stopped due to an unhandled exception.
- Fix two typos: analyzis -> analysis
Alternative would be to set TERM=dumb environment variable which disables color support as well, but this also works.