Skip to content

Commit 79b531e

Browse files
authored
correct verify_SSL (#33)
Correct field name is 'verify_SSL'. Currently test.py reports 'Could not contact the server.' because of this mistype.
1 parent 15efe46 commit 79b531e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

licensing/internal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def send_request(method, params):
124124
params: a dictionary of parameters
125125
"""
126126

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

0 commit comments

Comments
 (0)