Skip to content

Commit

Permalink
0.9.2-3 - fixed an import error on hcpsdk.__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Simont3 committed Mar 6, 2015
1 parent 0e45b9c commit 8648b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hcpsdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import ssl
try:
SSL_NOVERIFY = ssl._create_unverified_context()
except NameError:
except (AttributeError, NameError):
SSL_NOVERIFY = None
import http.client
from urllib.parse import urlencode, quote_plus
Expand Down

0 comments on commit 8648b39

Please sign in to comment.