소스 검색

Convert dict.keys() to list

version-14
Aditya Hase 8 년 전
부모
커밋
b51ad328af
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      frappe/utils/bench_helper.py

+ 1
- 1
frappe/utils/bench_helper.py 파일 보기

@@ -74,7 +74,7 @@ def get_app_commands(app):

@click.command('get-frappe-commands')
def get_frappe_commands():
commands = get_app_commands('frappe').keys()
commands = list(get_app_commands('frappe').keys())

for app in get_apps():
app_commands = get_app_commands(app)


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