From 6d14b7e2a0a52cac3d5b2616d148b9ae9d881d45 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Thu, 12 Aug 2021 11:58:55 -0400 Subject: [PATCH] Fix LVM volume group creation Fix volume group creation by fixing a spelling typo. Should be 'universal_newlines' instead of 'universal_newlnes'. Story: 2006796 Task: 42667 Signed-off-by: Charles Short Change-Id: I81eeeb84a1e2b1dca5c49ca8a8222a10cb010325 --- sysinv/sysinv/sysinv/sysinv/agent/pv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysinv/sysinv/sysinv/sysinv/agent/pv.py b/sysinv/sysinv/sysinv/sysinv/agent/pv.py index 5ca36ccab3..e47452327e 100644 --- a/sysinv/sysinv/sysinv/sysinv/agent/pv.py +++ b/sysinv/sysinv/sysinv/sysinv/agent/pv.py @@ -66,7 +66,7 @@ class PVOperator(object): pvdisplay_process = subprocess.Popen(pvdisplay_command, stdout=subprocess.PIPE, shell=True, - universal_newlnes=True) + universal_newlines=True) pvdisplay_output = pvdisplay_process.stdout.read() except Exception as e: self.handle_exception("Could not retrieve pvdisplay "