diff --git a/etg/stdpaths.py b/etg/stdpaths.py index c0b9018c..9d393880 100644 --- a/etg/stdpaths.py +++ b/etg/stdpaths.py @@ -31,6 +31,10 @@ def run(): # customizing the generated code and docstrings. c = module.find('wxStandardPaths') + assert isinstance(c, etgtools.ClassDef) + c.find('wxStandardPaths').ignore() + c.abstract = True + c.find('IgnoreAppSubDir').ignore() c.find('DontIgnoreAppSubDir').ignore() c.find('IgnoreAppBuildSubDirs').ignore()