From 7d2c10f4c103e565c377b2bacd7388e60d2f6e4d Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Sat, 14 Dec 2024 16:30:05 +0100 Subject: [PATCH] BIM: fix Wiki links in BIM Tutorial --- src/Mod/BIM/bimcommands/BimTutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/BIM/bimcommands/BimTutorial.py b/src/Mod/BIM/bimcommands/BimTutorial.py index 1467b2786c..e7b53e3dbc 100644 --- a/src/Mod/BIM/bimcommands/BimTutorial.py +++ b/src/Mod/BIM/bimcommands/BimTutorial.py @@ -113,7 +113,7 @@ class BIM_Tutorial: if sys.version_info.major >= 3: html = html.decode("utf8") html = html.replace("\n", " ") - html = html.replace('"/wiki/', '"https://www.freecadweb.org/wiki/') + html = html.replace('href="/', 'href="https://wiki.freecad.org/') html = re.sub( '
', "", html ) # remove table of contents