I have a little nit to pick here. Can you change
if PYTHON2
and
elif PYTHON3
to
if not six.PY3
and
elif six.PY3 # Or maybe even just an "else" here
And, of course, don't forget to
import wx.lib.six as six
I have a little nit to pick here. Can you change
if PYTHON2
and
elif PYTHON3
to
if not six.PY3
and
elif six.PY3 # Or maybe even just an "else" here
And, of course, don't forget to
import wx.lib.six as six