ソースを参照

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)


読み込み中…
キャンセル
保存