From b34ac35661ec91d6668f0926cd85cdd802eef92f Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 10 Nov 2011 23:36:36 +0000 Subject: [PATCH] Add wxLogGeneric git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69733 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etg/log.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etg/log.py b/etg/log.py index 8f4dca1b..29ea4c6a 100644 --- a/etg/log.py +++ b/etg/log.py @@ -55,7 +55,8 @@ def run(): # we already have for them. String formatting can be done in Python if # needed. Drop the '...' too. for name in ['wxLogMessage', 'wxLogVerbose', 'wxLogWarning', 'wxLogFatalError', - 'wxLogError', 'wxLogDebug', 'wxLogStatus', 'wxLogSysError']: + 'wxLogError', 'wxLogDebug', 'wxLogStatus', 'wxLogSysError', + 'wxLogGeneric']: for f in module.find(name).all(): p = f.find('formatString') p.type = 'const wxString&'