From b613ff06ad67217222f751f353f8b72597e31175 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Fri, 5 May 2023 09:35:32 -0400 Subject: [PATCH] Plot: tweak missing matplotlib warning (#9442) Close #9407 Co-authored-by: Chris Hennes --- src/Mod/Plot/Plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Plot/Plot.py b/src/Mod/Plot/Plot.py index 9d2db64e6f..78e117439c 100644 --- a/src/Mod/Plot/Plot.py +++ b/src/Mod/Plot/Plot.py @@ -37,7 +37,7 @@ try: from matplotlib.figure import Figure except ImportError: - FreeCAD.Console.PrintWarning('matplotlib not found, so Plot module can not be loaded\n') + FreeCAD.Console.PrintWarning("The 'matplotlib' Python package was not found. Plot module cannot be loaded\n") raise ImportError("matplotlib not installed")