From 7309af5ec09604e0d8a39451bf32067f738684e9 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Thu, 7 Jun 2018 00:14:35 -0400 Subject: [PATCH] Lengthen field a bit --- pvcf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvcf.py b/pvcf.py index e75ec233..8801579f 100644 --- a/pvcf.py +++ b/pvcf.py @@ -151,9 +151,9 @@ def getInformationFromXML(zk, uuid, long_output): if long_output == True: # Disk list ainformation.append('') - ainformation.append('{}Disks:{} {}ID Type Name Dev Bus{}'.format(ansiiprint.purple(), ansiiprint.end(), ansiiprint.bold(), ansiiprint.end())) + ainformation.append('{}Disks:{} {}ID Type Name Dev Bus{}'.format(ansiiprint.purple(), ansiiprint.end(), ansiiprint.bold(), ansiiprint.end())) for disk in ddisks: - ainformation.append(' {0: <3} {1: <5} {2: <40} {3: <4} {4: <5}'.format(ddisks.index(disk), disk['type'], disk['name'], disk['dev'], disk['bus'])) + ainformation.append(' {0: <3} {1: <5} {2: <42} {3: <4} {4: <5}'.format(ddisks.index(disk), disk['type'], disk['name'], disk['dev'], disk['bus'])) # Network list ainformation.append('') ainformation.append('{}Interfaces:{} {}ID Type Source Model MAC{}'.format(ansiiprint.purple(), ansiiprint.end(), ansiiprint.bold(), ansiiprint.end()))