Skip to content

Commit

Permalink
Fix indenting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuka committed Feb 5, 2021
1 parent cf2694f commit 3e8d57a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]},
'name': 'winnfs',
'title': u'Check for the Windows NFS Server',
'version': '0.3',
'version': '0.4',
'version.min_required': '1.6.0',
'version.packaged': '1.6.0p20',
'version.usable_until': '1.7.0'
Expand Down
3 changes: 2 additions & 1 deletion web/plugins/perfometer/winnfssrv.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ def perfometer_winnfssrv(row, check_command, perf_data):
for i, color, base, scale, verbfunc in [
(0, "#00FFB2", 10000, 10, lambda v: ("Clients: %d") % v),
(1, "#00FFFF", 10000, 10, lambda v: ("Sessions: %d") % v),
]: val = float(perf_data[i][1])
]:
val = float(perf_data[i][1])
h += perfometer_logarithmic(val, base, scale, color)
texts.append(verbfunc(val))
h += '</div>'
Expand Down

0 comments on commit 3e8d57a

Please sign in to comment.