Hi Guido,
> - except Exception: # pylint: disable-msg=W0703
> - logging.exception("RunParts %s failed: %s", hooks_dir)
> + except Exception, err: # pylint: disable-msg=W0703
> + logging.exception("RunParts %s failed: %s", hooks_dir, err)This change is already in my "Fixes to errors/warnings raised by pylint 0.24" patch. Thanks, Andrea
