diff options
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 362509ffc3a..bce289f2b66 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -252,7 +252,7 @@ class MachCommands(CommandBase): git_db_dir = path.join(git_dir, "db") git_checkout_dir = path.join(git_dir, "checkouts") if os.path.isdir(git_db_dir): - git_db_list = filter(lambda f: not f.startswith('.'), os.listdir(git_db_dir)) + git_db_list = list(filter(lambda f: not f.startswith('.'), os.listdir(git_db_dir))) else: git_db_list = [] if os.path.isdir(git_checkout_dir): |