Merge "Use universal_newlines with subprocess.check_output"
This commit is contained in:
commit
7b8d598d1c
@ -147,7 +147,7 @@ def all_block_devices():
|
|||||||
'''Run blkid and yield a BlockDevice for all devices.'''
|
'''Run blkid and yield a BlockDevice for all devices.'''
|
||||||
try:
|
try:
|
||||||
cmd = ['blkid', '-o', 'export']
|
cmd = ['blkid', '-o', 'export']
|
||||||
out = subprocess.check_output(cmd)
|
out = subprocess.check_output(cmd, universal_newlines=True)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error('Problem running "%s": %s', ' '.join(cmd), e)
|
logger.error('Problem running "%s": %s', ' '.join(cmd), e)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user