瀏覽代碼

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)


Loading…
取消
儲存