From 83988ca8316df3f88dd366fefbc061f670ab5ff7 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Sat, 12 Sep 2015 14:28:25 -0300 Subject: [PATCH] Draft: Added wiki instructions URL to DXFimporter download fail message --- src/Mod/Draft/importDXF.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Draft/importDXF.py b/src/Mod/Draft/importDXF.py index 3e1ee694d..bd3a7199e 100644 --- a/src/Mod/Draft/importDXF.py +++ b/src/Mod/Draft/importDXF.py @@ -74,9 +74,9 @@ def errorDXFLib(gui): from PySide import QtGui, QtCore from DraftTools import translate message = translate("Draft","""Download of dxf libraries failed. -Please download them manually from: -https://github.com/yorikvanhavre/Draft-dxf-importer -and place them in your macros folder.""") +Please download and install them manually. +See complete instructions at +http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install""") QtGui.QMessageBox.information(None,"",message) else: FreeCAD.Console.PrintWarning("The DXF import/export libraries needed by FreeCAD to handle the DXF format are not installed.\n")