From c586f04cf3b3687856554a4914b4966b84757bfb Mon Sep 17 00:00:00 2001 From: Jeremy Mack Wright Date: Thu, 15 Feb 2018 15:31:20 -0500 Subject: [PATCH] It technically worked the way it was, but the package name usage was confusing. --- cadquery/freecad_impl/importers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cadquery/freecad_impl/importers.py b/cadquery/freecad_impl/importers.py index 76f8a96..2c30e50 100644 --- a/cadquery/freecad_impl/importers.py +++ b/cadquery/freecad_impl/importers.py @@ -57,7 +57,7 @@ def importStepFromURL(url): webFile = urlreader.urlopen(url) else: import urllib.request - webFile = urlreader.request.urlopen(url) + webFile = urllib.request.urlopen(url) tempFile = tempfile.NamedTemporaryFile(suffix='.step', delete=False) tempFile.write(webFile.read())