Skip to content

Commit

Permalink
Added <CR>
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrimesix committed Sep 30, 2023
1 parent 4d178ee commit 30cb182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ixdiagnose/plugins/nfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def nfs_client_count_by_type(client: MiddlewareClient, context: Any) -> str:
output += f'{"NFSv3":^10}{"NFSv4.0":^10}{"NFSv4.1":^10}{"NFSv4.2":^10}\n'
output += f'{"-----":^10}{"-------":^10}{"-------":^10}{"-------":^10}\n'
output += f'{len(num_nfs3):^10}'
output += f'{nfs4_ver_info.count(0):^10}{nfs4_ver_info.count(1):^10}{nfs4_ver_info.count(2):^10}'
output += f'{nfs4_ver_info.count(0):^10}{nfs4_ver_info.count(1):^10}{nfs4_ver_info.count(2):^10}\n'

return output

Expand Down

0 comments on commit 30cb182

Please sign in to comment.