From: Robin Dunn Date: Fri, 17 Sep 1999 15:43:05 +0000 (+0000) Subject: uncommented a try...except that I had removed for testing. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2d0294308d8d021360c84b92535b8dbc15fb0d66 uncommented a try...except that I had removed for testing. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3693 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/wxPython/lib/wxpTag.py b/utils/wxPython/lib/wxpTag.py index a4f372ec3f..afdfd4c1be 100644 --- a/utils/wxPython/lib/wxpTag.py +++ b/utils/wxPython/lib/wxpTag.py @@ -208,13 +208,13 @@ class wxpTagHandler(wxHtmlWinTagHandler): # convert to wxColour elif value[0] == '#': - #try: + try: red = string.atoi('0x'+value[1:3], 16) green = string.atoi('0x'+value[3:5], 16) blue = string.atoi('0x'+value[5:], 16) value = wxColor(red, green, blue) - #except: - # pass + except: + pass self.ctx.kwargs[name] = value return false