New issue 9 by chrystal...@free.fr: Include wxversion to be compatible with
multi-wx platform
http://code.google.com/p/gui2exe/issues/detail?id=9
I have two different versions of wx installed on my system: 2.6 and 2.8.
Unfortunately 2.6 is used by default. To avoid this, the following do the
job:
import wxversion
wxversion.select('2.8')
Place it just before wx import
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 on issue 9 by andrea.gavana: Include wxversion to be compatible
with multi-wx platform
http://code.google.com/p/gui2exe/issues/detail?id=9
Fixed in SVN (using wxversion.ensureMinimal("2.8") instead of wxversion.
select("2.8")), thank you for the bug report.