Merge pull request #1898 from coolo/dont_upper

pkglistgen: Don't upper case the staging letter
This commit is contained in:
Stephan Kulow 2019-03-11 15:33:58 +01:00 committed by GitHub
commit 149e290fae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ class CommandLineInterface(ToolBase.CommandLineInterface):
for scope in opts.scope:
if scope.startswith('staging:'):
letter = re.match('staging:(.*)', scope).group(1)
solve_project(api.prj_from_short(letter.upper()), 'staging')
solve_project(api.prj_from_short(letter), 'staging')
elif scope == 'target':
solve_project(target_project, scope)
elif scope == 'rings':