| Index: scripts/slave/recipes/v8/auto_tag.py
|
| diff --git a/scripts/slave/recipes/v8/auto_tag.py b/scripts/slave/recipes/v8/auto_tag.py
|
| index 3706f86b2924b899dac4e73b6330ca00d2a28fbb..7845963b9aa8dbb5cd7a4f304a944439e0c4e5d3 100644
|
| --- a/scripts/slave/recipes/v8/auto_tag.py
|
| +++ b/scripts/slave/recipes/v8/auto_tag.py
|
| @@ -23,7 +23,9 @@ BRANCH_RE = re.compile(r'^\d+\.\d+$')
|
| def GetCommitForRef(api, repo, ref):
|
| step_result = api.git(
|
| 'ls-remote', repo, ref,
|
| - name='git ls-remote %s' % ref.split('/')[-1],
|
| + # For strange reasons, this string is not a string in production without
|
| + # str().
|
| + name=str('git ls-remote %s' % ref.split('/')[-1]),
|
| cwd=api.path['checkout'],
|
| stdout=api.raw_io.output(),
|
| )
|
|
|