From dd4a558ce51201fe1657e0017471bd3aaa370ac8 Mon Sep 17 00:00:00 2001 From: camelid Date: Sat, 30 May 2020 17:42:34 -0700 Subject: [PATCH] Add missing brackets --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 9172a398e1f..390f32b6d5b 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -742,7 +742,7 @@ install them, let us know by filing a bug!") git_sha = git_bundle_subject.split(' ')[-1] # Verify that it's a valid commit # NOTE: this will pass even if `git_sha` is 'master' or another branch or ref - subprocess.check_call('git', 'cat-file', 'commit', git_sha) + subprocess.check_call(['git', 'cat-file', 'commit', git_sha]) git_is_dirty = bool(subprocess.check_output([ 'git', 'status', '--porcelain'