Skip to content

Commit 95162d5

Browse files
committed
Fix branch name in scripts/create_release.py
1 parent 15fc2b4 commit 95162d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/create_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def main(args):
5555

5656
subprocess.check_call([os.path.join(script_dir, 'update_bazel_workspace.sh')], cwd=root_dir)
5757

58-
branch_name = 'version_%s' % '_'.join(str(part) for part in new_version)
58+
branch_name = 'version_' + new_version
5959

6060
# Create a new git branch
6161
subprocess.check_call(['git', 'checkout', '-b', branch_name], cwd=root_dir)

0 commit comments

Comments
 (0)