Skip to content

Commit

Permalink
Added <CR>
Browse files Browse the repository at this point in the history
(cherry picked from commit 30cb182)
  • Loading branch information
mgrimesix authored and Vladimir Vinogradenko committed Oct 1, 2023
1 parent 5a6312a commit b5ffade
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 b5ffade

Please sign in to comment.