From 1dfb7c50884f37296726a77751c3f884caa62de4 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 28 Apr 2018 15:55:37 +0200 Subject: [PATCH] minor fixes --- src/Mod/MeshPart/Gui/MeshFlatteningCommand.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py b/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py index d18aad12ed..c62bf893d7 100644 --- a/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py +++ b/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py @@ -2,7 +2,6 @@ import Mesh import FreeCAD as App import FreeCADGui as Gui import Part -import numpy as np class BaseCommand(object): def __init__(self): @@ -85,5 +84,5 @@ try: Gui.addCommand('MeshPart_CreateFlatMesh', CreateFlatMesh()) Gui.addCommand('MeshPart_CreateFlatFace', CreateFlatFace()) except ImportError: - App.Console.PrintLog("flatmesh-commands are not available") - App.Console.PrintLog("flatmesh needs pybind11 as build dependency") + App.Console.PrintLog("flatmesh-commands are not available\n") + App.Console.PrintLog("flatmesh needs pybind11 as build dependency\n")