From b51ad328afeb65f6e12d52e607db53ae2f3386e5 Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Mon, 7 Aug 2017 23:17:59 +0530 Subject: [PATCH] Convert dict.keys() to list --- frappe/utils/bench_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)