Merge pull request #3899 from adityahase/fix-dict-keys

Convert dict.keys() to list
This commit is contained in:
Rushabh Mehta 2017-08-11 12:54:19 +05:30 committed by GitHub
commit f8abb5fc10

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)