Skip to content

Commit

Permalink
#1252: fix ssl-protocol version check (TLSv1_2 requires python 2.7.9 …
Browse files Browse the repository at this point in the history
…or later)

git-svn-id: https://xpra.org/svn/Xpra/trunk@13186 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Aug 3, 2016
1 parent f9f1346 commit 9211591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/scripts/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ def addtrailingslash(v):
bind_dirs = ["auto"]

ssl_protocol = "TLSv1_2"
if sys.version_info<(2, 7):
if sys.version_info<(2, 7, 9):
ssl_protocol = "SSLv23"

GLOBAL_DEFAULTS = {
Expand Down

0 comments on commit 9211591

Please sign in to comment.