diff options
author | camelid <camelidcamel@gmail.com> | 2020-05-30 17:42:34 -0700 |
---|---|---|
committer | camelid <camelidcamel@gmail.com> | 2020-05-30 17:42:34 -0700 |
commit | dd4a558ce51201fe1657e0017471bd3aaa370ac8 (patch) | |
tree | c66e2cbe3ddf45e04853e6ea92bf90d3563f35e0 /python/servo | |
parent | 02d69a0fdadd38116486bd464461de83b6df830d (diff) | |
download | servo-dd4a558ce51201fe1657e0017471bd3aaa370ac8.tar.gz servo-dd4a558ce51201fe1657e0017471bd3aaa370ac8.zip |
Add missing brackets
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/command_base.py | 2 |
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' |