From 07a0b1d7ef38f472fef745a241e6e425d2a3de02 Mon Sep 17 00:00:00 2001 From: Schylar Utley Date: Wed, 20 Jan 2021 15:47:34 -0600 Subject: [PATCH] Update startup_scripts/280_custom_links.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christian Mäder --- startup_scripts/280_custom_links.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/startup_scripts/280_custom_links.py b/startup_scripts/280_custom_links.py index b014a29..7545a0b 100644 --- a/startup_scripts/280_custom_links.py +++ b/startup_scripts/280_custom_links.py @@ -24,6 +24,3 @@ for link in custom_links: if not CustomLink.objects.filter(name=custom_link.name): custom_link.save() print("🖥️ Created Custom Link {0}".format(custom_link.name)) - else: - print("⚠️ Skipping Custom Link {0}, already exists".format(custom_link.name)) -