]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/widgetTest.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / widgetTest.py
index ee940e89f4e68d3017c822f4ee25603edd3d10e2..3ca627c6ab6e0ace4484c956a32d7f3b85d0996b 100644 (file)
@@ -1,6 +1,6 @@
 
 
-import sys, string
+import sys
 
 from wxPython.wx   import *
 from wxPython.html import *
@@ -43,7 +43,7 @@ class TestHtmlPanel(wxPanel):
         import About
         wxPanel.__init__(self, parent, id, size=size)
         self.html = wxHtmlWindow(self, -1, wxPoint(5,5), wxSize(400, 350))
-        py_version = string.split(sys.version)[0]
+        py_version = sys.version.split()[0]
         self.html.SetPage(About.MyAboutBox.text % (wx.__version__, py_version))
         ir = self.html.GetInternalRepresentation()
         self.html.SetSize( (ir.GetWidth()+5, ir.GetHeight()+5) )