From 88a315da57adaec92a023797ea5d6dafd7d32c1c Mon Sep 17 00:00:00 2001
From: "mathias.chouet" <mathias.chouet@irstea.fr>
Date: Thu, 16 Jan 2020 15:39:27 +0100
Subject: [PATCH] Remove debug print

---
 mkdocs2pdf.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/mkdocs2pdf.py b/mkdocs2pdf.py
index cc27bab22..5efc10428 100644
--- a/mkdocs2pdf.py
+++ b/mkdocs2pdf.py
@@ -176,14 +176,12 @@ def buildDocForLang(lang):
 
     # Read config
     yamlPath = 'mkdocs-' + lang + '.yml'
-    print("yamlPath: " + yamlPath)
     dMkdocsYaml = readConfig(yamlPath)
 
     # Create string with merged MarkDown
     s = exploreAndMerge(dMkdocsYaml['docs_dir'], dMkdocsYaml['nav'])
     # Save the merged .md file
     mergedDocFilename = mergedDocFilenamePrefix + lang
-    print("filename: " + mergedDocFilename)
     mergedDocOutputPath = os.path.join(buildDir, mergedDocFilename)
     with open('{}.md'.format(mergedDocOutputPath), 'w') as f:
         f.writelines(s)
-- 
GitLab