Browse Source

Convert dict.keys() to list

version-14
Aditya Hase 8 years ago
parent
commit
b51ad328af
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/utils/bench_helper.py

+ 1
- 1
frappe/utils/bench_helper.py View File

@@ -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…
Cancel
Save