diff --git a/src/stratis_cli/_actions/_list_pool.py b/src/stratis_cli/_actions/_list_pool.py index f50106389..1e557f455 100644 --- a/src/stratis_cli/_actions/_list_pool.py +++ b/src/stratis_cli/_actions/_list_pool.py @@ -287,16 +287,16 @@ def _print_detail_view(self, mopool, size_change_codes): total_physical_used = get_property(mopool.TotalPhysicalUsed(), Range, None) print("Space Usage:") - print(f"Fully Allocated: {'Yes' if mopool.NoAllocSpace() else 'No'}") - print(f" Size: {Range(mopool.TotalPhysicalSize())}") - print(f" Allocated: {Range(mopool.AllocatedSize())}") + print(f" Fully Allocated: {'Yes' if mopool.NoAllocSpace() else 'No'}") + print(f" Size: {Range(mopool.TotalPhysicalSize())}") + print(f" Allocated: {Range(mopool.AllocatedSize())}") total_physical_used = get_property(mopool.TotalPhysicalUsed(), Range, None) total_physical_used_str = ( TABLE_FAILURE_STRING if total_physical_used is None else total_physical_used ) - print(f" Used: {total_physical_used_str}") + print(f" Used: {total_physical_used_str}") def display(self): """