From dfea8535b65ae78a1106b79ce805498bc18b7b9b Mon Sep 17 00:00:00 2001 From: lorenz Date: Fri, 3 Jan 2020 15:51:54 +0100 Subject: [PATCH] importDWG: remove comments --- src/Mod/Draft/importDWG.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Mod/Draft/importDWG.py b/src/Mod/Draft/importDWG.py index c2f7c252b6..54dd50d35f 100644 --- a/src/Mod/Draft/importDWG.py +++ b/src/Mod/Draft/importDWG.py @@ -203,7 +203,6 @@ def convertToDxf(dwgfilename): """ import os, tempfile, subprocess, sys - ############################ try libredwg import shutil if shutil.which("dwg2dxf"): outdir = tempfile.mkdtemp() @@ -212,7 +211,6 @@ def convertToDxf(dwgfilename): proc = subprocess.Popen(("dwg2dxf", dwgfilename, "-o", result)) proc.communicate() return result - ############################ end libredwg teigha = getTeighaConverter() if teigha: @@ -261,13 +259,11 @@ def convertToDwg(dxffilename, dwgfilename): """ import os, subprocess - ############################ try libredwg import shutil if shutil.which("dxf2dwg"): proc = subprocess.Popen(("dxf2dwg", dxffilename, "-o", dwgfilename)) proc.communicate() return dwgfilename - ############################ end libredwg teigha = getTeighaConverter() if teigha: