aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
authorcamelid <camelidcamel@gmail.com>2020-05-30 17:42:34 -0700
committercamelid <camelidcamel@gmail.com>2020-05-30 17:42:34 -0700
commitdd4a558ce51201fe1657e0017471bd3aaa370ac8 (patch)
treec66e2cbe3ddf45e04853e6ea92bf90d3563f35e0 /python/servo
parent02d69a0fdadd38116486bd464461de83b6df830d (diff)
downloadservo-dd4a558ce51201fe1657e0017471bd3aaa370ac8.tar.gz
servo-dd4a558ce51201fe1657e0017471bd3aaa370ac8.zip
Add missing brackets
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/command_base.py2
1 files changed, 1 insertions, 1 deletions
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'