Merge "diff_branches: capitalize the release name"

This commit is contained in:
Jenkins 2014-10-24 18:43:16 +00:00 committed by Gerrit Code Review
commit 3321a489c4
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ def release_from_branch(branch):
if branch == 'master':
return MASTER_RELEASE
else:
return branch.replace('stable/', '')
return branch.replace('stable/', '').title()
def generate_docbook(project, new_branch, old_list, new_list):