Skip to content

Commit

Permalink
Fix typo in error message when graph plug-in is missing
Browse files Browse the repository at this point in the history
Change-Id: Ib9356ee7644390e1230f85f98ac0878949d380e8
  • Loading branch information
jherbel committed Oct 23, 2024
1 parent ae47e34 commit f5fad58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmk/gui/graphing/_graph_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def get_graph_template_from_id(template_id: str) -> GraphTemplate:
for id_, graph_plugin in _get_graph_plugins():
if template_id == id_:
return _parse_graph_plugin(id_, graph_plugin)
raise MKGeneralException(_("There is no graph graph_plugin with the id '%s'") % template_id)
raise MKGeneralException(_("There is no graph plug-in with the id '%s'") % template_id)


def evaluate_metrics(
Expand Down

0 comments on commit f5fad58

Please sign in to comment.