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 <charles.short@windriver.com>
Change-Id: I81eeeb84a1e2b1dca5c49ca8a8222a10cb010325
This commit is contained in:
Charles Short 2021-08-12 11:58:55 -04:00
parent 6705209afc
commit 6d14b7e2a0
1 changed files with 1 additions and 1 deletions

View File

@ -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 "