Skip to content

Commit

Permalink
doh: 2 numbers are less than 3..
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@13236 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Aug 5, 2016
1 parent 9d80c78 commit 117b6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/gl/gl_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def redirect_log(logger_name):
_version_warning_shown = True
vsplit = pyopengl_version.split('.')
#we now require PyOpenGL 3.1 or later
if vsplit[:2]<['3','0','1'] and not force_enable:
if vsplit[:3]<['3','0','1'] and not force_enable:
gl_check_error("PyOpenGL version %s is too old and buggy" % pyopengl_version)
return {}
if vsplit[:2]<['3','1']:
Expand Down

0 comments on commit 117b6c3

Please sign in to comment.