From 54fc7cb2b97fee021ca1f1bbfee4403ef889af3e Mon Sep 17 00:00:00 2001 From: Alex Mauer Date: Tue, 14 Nov 2006 23:07:14 +0000 Subject: [PATCH] * Wait for lsb_release after we're done with it, so it doesn't stay defunct --- src/common/helpers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/helpers.py b/src/common/helpers.py index ba46b0bf0..5dc224ff2 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -702,6 +702,7 @@ def get_os_info(): output = temp_failure_retry(child_stdout.readline).strip() child_stdout.close() child_stdin.close() + os.wait() # some distros put n/a in places, so remove those output = output.replace('n/a', '').replace('N/A', '') return output