diff --git a/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py b/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py index 644f9a78c5d0e934bc1be63908a28cc8c79b0885..ffe82d61b5a32fb22a42207cc25e6da6db4a2ad7 100755 --- a/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py +++ b/Documentation/Cookbook/Scripts/otbGenerateWrappersRstDoc.py @@ -365,7 +365,7 @@ def render_deprecation_string(app): def render_application(appname, allapps): "Render app to rst" - app = otbApplication.Registry.CreateApplication(appname) + app = otbApplication.Registry.CreateApplicationWithoutLogger(appname) # TODO: remove this when bug 440 is fixed app.Init() @@ -388,7 +388,7 @@ def render_application(appname, allapps): return output def GetApplicationTags(appname): - app = otbApplication.Registry.CreateApplication(appname) + app = otbApplication.Registry.CreateApplicationWithoutLogger(appname) return app.GetDocTags() def GenerateRstForApplications(rst_dir):