[PATCH 1/2] rtemstoolkit: Support more Linux distributions
Chris Johns
chrisj at rtems.org
Thu Mar 5 09:51:15 UTC 2020
All OK to push (with the subject correction).
Thanks
Chris
On 2020-03-05 20:35, Sebastian Huber wrote:
> The platform.dist() function is not always available.
> ---
> rtemstoolkit/linux.py | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/rtemstoolkit/linux.py b/rtemstoolkit/linux.py
> index 7e45409..1b55655 100644
> --- a/rtemstoolkit/linux.py
> +++ b/rtemstoolkit/linux.py
> @@ -83,8 +83,9 @@ def overrides():
> try:
> distro = platform.dist()[0]
> distro_ver = float(platform.dist()[1])
> - except ValueError:
> + except (AttributeError, ValueError):
> # Non LSB distro found, use failover"
> + distro = ''
> pass
>
> # Non LSB - fail over to issue
>
More information about the devel
mailing list