From: Robin Dunn Date: Sat, 22 Nov 2003 21:16:46 +0000 (+0000) Subject: Forgot to remove the debug prints X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6a62357c175351b8e046cb5f0636a59b7c9baffb Forgot to remove the debug prints git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/wxpTag.py b/wxPython/wx/lib/wxpTag.py index 8dbb7109d4..49e5c4475b 100644 --- a/wxPython/wx/lib/wxpTag.py +++ b/wxPython/wx/lib/wxpTag.py @@ -100,17 +100,14 @@ PARAMTAG = 'PARAM' class wxpTagHandler(wxHtmlWinTagHandler): def __init__(self): - print 'wxpTagHandler' wxHtmlWinTagHandler.__init__(self) self.ctx = None def GetSupportedTags(self): - print 'wxpTagHandler.GetSupportedTags' return WXPTAG+','+PARAMTAG def HandleTag(self, tag): - print 'wxpTagHandler.HandleTag' name = tag.GetName() if name == WXPTAG: return self.HandleWxpTag(tag)