mirror of
https://github.com/servo/servo.git
synced 2025-06-13 02:44:29 +00:00
Add missing brackets
This commit is contained in:
parent
02d69a0fda
commit
dd4a558ce5
1 changed files with 1 additions and 1 deletions
|
@ -742,7 +742,7 @@ install them, let us know by filing a bug!")
|
||||||
git_sha = git_bundle_subject.split(' ')[-1]
|
git_sha = git_bundle_subject.split(' ')[-1]
|
||||||
# Verify that it's a valid commit
|
# Verify that it's a valid commit
|
||||||
# NOTE: this will pass even if `git_sha` is 'master' or another branch or ref
|
# 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_is_dirty = bool(subprocess.check_output([
|
||||||
'git', 'status', '--porcelain'
|
'git', 'status', '--porcelain'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue