From fd24bf4fd308dfd4eb0715b3f47c2a6b87a644c3 Mon Sep 17 00:00:00 2001 From: Rob Lazzurs Date: Sun, 8 Jan 2023 08:11:54 +0000 Subject: [PATCH] fix: Syntax error in config.py (#799) The PROVIDERS constant in config.py was missing a comma in the list which was causing autogeneration to fail. Found this while trying to add a new icon to onprem. I expect this is going to cause a few updates. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 08b3400..4604202 100644 --- a/config.py +++ b/config.py @@ -13,7 +13,7 @@ DIR_TEMPLATE = "templates" PROVIDERS = ( "base", - "onprem" + "onprem", "aws", "azure", "digitalocean",