From 7c4729cf2ae5890e495771a28d84ec0dbf8e9d11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Ricart?= Date: Sun, 9 Mar 2025 14:21:38 +0100 Subject: [PATCH] [ALL] add more logs for generating doc --- parsers/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/parsers/base.py b/parsers/base.py index 55f6798..b1387b2 100644 --- a/parsers/base.py +++ b/parsers/base.py @@ -48,6 +48,7 @@ def main(): "os":{"NAME":"FreeboxOS","VERSION":"None"}, } infos["extend_exists"] = False + print("Generating final rst") output = template.render(**infos) with open("../source/devices/{host}.rst".format(host=infos["hostname"].replace("\n","")), "w") as f: f.write(output)