Status: New
Owner: ----

New issue 208 by noword.forever: 关于判断wx版本
http://code.google.com/p/ulipad/issues/detail?id=208

mixins\import.py第7710行,判断wx的版本有问题。

我的wx的版本是2.8.8.10。

将
if wx.version() < '2.8.8.0':
改为:

            self.html = HtmlPage.IEHtmlWindow(self)
            current_version = map(lambda i:i.isdigit() and int(i),
wx.version().split('.'))
            test_version = [2, 8, 8, 0]
            if current_version < test_version:


之后,正常。


--
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

Reply via email to