diff --git a/src/common/helpers.py b/src/common/helpers.py index 8ab3e526a..a999c8c6f 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -879,7 +879,7 @@ def get_os_info(): text = distro_name elif path_to_file.endswith('lfs-release'): # file just has version text = distro_name + ' ' + text - return text + return text.replace('\n', '') # our last chance, ask uname and strip it uname_output = get_output_of_command('uname -sr')