Переглянути джерело

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.
tags/v0.23.2
Rob Lazzurs 1 рік тому
committed by GitHub
джерело
коміт
fd24bf4fd3
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 4AEE18F83AFDEB23
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      config.py

+ 1
- 1
config.py Переглянути файл

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

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


Завантаження…
Відмінити
Зберегти