From 7d3d66a35759109f410ce9cc95ac1240862d9680 Mon Sep 17 00:00:00 2001 From: Rob Lazzurs Date: Tue, 22 Nov 2022 01:38:05 +0000 Subject: [PATCH] fix: Syntax error in config.py 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 08b34004..46042024 100644 --- a/config.py +++ b/config.py @@ -13,7 +13,7 @@ DIR_TEMPLATE = "templates" PROVIDERS = ( "base", - "onprem" + "onprem", "aws", "azure", "digitalocean",