diff_branches: capitalize the release name

Change-Id: I518209db820543cf614495ccf986b53634b5c2de
This commit is contained in:
Gauvain Pocentek 2014-10-24 13:21:27 +02:00
parent 4906d5018d
commit c81c1c98eb
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):