소스 검색

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 2 년 전
부모
커밋
7d3d66a357
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",


불러오는 중...
취소
저장