From 00b9f1d825b91700a06a1979efd34a5313c73e44 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 5 Mar 2020 10:25:38 +0100 Subject: rtemstoolkit: Support more Linux distributions 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 -- cgit v1.2.3