Fix bad bolding in lists

This commit is contained in:
Joshua Boniface 2019-06-19 15:16:22 -04:00
parent 5d4ecafb03
commit 51256b4f0f
1 changed files with 4 additions and 4 deletions

View File

@ -703,8 +703,8 @@ def formatVolumeList(zk_conn, volume_list):
{volume_format: <{volume_format_length}} \
{volume_features: <{volume_features_length}} \
{end_bold}'.format(
bold=ansiprint.bold(),
end_bold=ansiprint.end(),
bold='',
end_bold='',
volume_name_length=volume_name_length,
volume_pool_length=volume_pool_length,
volume_size_length=volume_size_length,
@ -790,8 +790,8 @@ def formatSnapshotList(zk_conn, snapshot_list):
{snapshot_volume: <{snapshot_volume_length}} \
{snapshot_pool: <{snapshot_pool_length}} \
{end_bold}'.format(
bold=ansiprint.bold(),
end_bold=ansiprint.end(),
bold='',
end_bold='',
snapshot_name_length=snapshot_name_length,
snapshot_volume_length=snapshot_volume_length,
snapshot_pool_length=snapshot_pool_length,