Skip to content

Commit

Permalink
correct verify_SSL (#33)
Browse files Browse the repository at this point in the history
Correct field name is 'verify_SSL'. Currently test.py reports 'Could not contact the server.' because of this mistype.
  • Loading branch information
copterspace authored Sep 25, 2020
1 parent 15efe46 commit 79b531e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion licensing/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def send_request(method, params):
params: a dictionary of parameters
"""

if HelperMethods.verify_SLL:
if HelperMethods.verify_SSL:
return urllib.request.urlopen(HelperMethods.server_address + method, \
urllib.parse.urlencode(params)\
.encode("utf-8")).read().decode("utf-8")
Expand Down

0 comments on commit 79b531e

Please sign in to comment.