Skip to content

Commit

Permalink
Merge pull request #73 from citrusleaf/spk/typeError
Browse files Browse the repository at this point in the history
Fix minor TypeError
  • Loading branch information
dwelch-spike authored Dec 7, 2019
2 parents f402f25 + 5f0daf7 commit eec285a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client/ssl_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def _parse_protocols(self, protocols):
protocols_to_enable.remove("TLSv1.2")

elif proto == "all" or proto == "+all":
protocols_to_enable += all_protocols
protocols_to_enable.update(all_protocols)
elif proto == "-all":
protocols_to_enable.clear()

Expand Down

0 comments on commit eec285a

Please sign in to comment.