Hi Matthias,

Thanks for improving the error reporting in provision!

Matthias Dieter Wallnöfer wrote:
> +class ProvisioningError(ValueError):
> +  pass
> +
>   
^^^ Please derive from the Exception baseclass - ValueError is about
arguments with incorrect values being passed, so not relevant here.

Also, please use 4-space indentation in Python code, and use docstrings
(that way you don't need "pass" there).

Cheers,

Jelmer

Reply via email to