344d343
< return do_check_style(ui, repo, **args)
345a345,351
> try:
> return do_check_style(ui, repo, **args)
> except Exception, e:
> import traceback
> traceback.print_exc()
> return True
>
349d354
< return do_check_format(ui, repo, **args)
350a356,362
> try:
> return do_check_format(ui, repo, **args)
> except Exception, e:
> import traceback
> traceback.print_exc()
> return True
>