diff --git a/frappe/utils/bench_helper.py b/frappe/utils/bench_helper.py index c4bb11d424..795deda05a 100644 --- a/frappe/utils/bench_helper.py +++ b/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)