Explorar el Código

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.
pull/799/head
Rob Lazzurs hace 2 años
padre
commit
7d3d66a357
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      config.py

+ 1
- 1
config.py Ver fichero

@@ -13,7 +13,7 @@ DIR_TEMPLATE = "templates"

PROVIDERS = (
"base",
"onprem"
"onprem",
"aws",
"azure",
"digitalocean",


Cargando…
Cancelar
Guardar