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.
pull/831/head
Rob Lazzurs 2 years ago committed by GitHub
parent 224582a09c
commit fd24bf4fd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@ DIR_TEMPLATE = "templates"
PROVIDERS = ( PROVIDERS = (
"base", "base",
"onprem" "onprem",
"aws", "aws",
"azure", "azure",
"digitalocean", "digitalocean",

Loading…
Cancel
Save