Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
It technically worked the way it was, but the package name usage was …
Browse files Browse the repository at this point in the history
…confusing.
  • Loading branch information
jmwright committed Feb 15, 2018
1 parent abed4e4 commit c586f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cadquery/freecad_impl/importers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit c586f04

Please sign in to comment.