From cc2bfc3c3cf802dd686e0421f4060b5ad9abb988 Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Mon, 21 Oct 2024 15:08:13 +0200 Subject: [PATCH] Fix PlantUML urls --- examples/conformance/woods.py | 4 +++- examples/conformance/woods2.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/conformance/woods.py b/examples/conformance/woods.py index 6f7f0d0..633e1e9 100644 --- a/examples/conformance/woods.py +++ b/examples/conformance/woods.py @@ -196,5 +196,7 @@ if yes_no("Print PlantUML?"): print("==================================") print(uml) print("==================================") - print("Go to http://www.plantuml.com/plantuml/uml/") + print("Go to either:") + print(" ▸ https://www.plantuml.com/plantuml/uml") + print(" ▸ https://mstro.duckdns.org/plantuml/uml") print("and paste the above string.") diff --git a/examples/conformance/woods2.py b/examples/conformance/woods2.py index a09fb0d..656cddb 100644 --- a/examples/conformance/woods2.py +++ b/examples/conformance/woods2.py @@ -127,5 +127,7 @@ if yes_no("Print PlantUML?"): print("==================================") print(uml) print("==================================") - print("Go to http://www.plantuml.com/plantuml/uml/") + print("Go to either:") + print(" ▸ https://www.plantuml.com/plantuml/uml") + print(" ▸ https://mstro.duckdns.org/plantuml/uml") print("and paste the above string.")