Merge pull request #2820 from mozilla/taskcluster-py-nonstable

Correctly handle non stable versions in `--branch`
This commit is contained in:
Reuben Morais 2020-03-12 14:02:10 -03:00 committed by GitHub
commit 8ca087d955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ def main():
ds_version = parse_version(version_string)
args.branch = "v{}".format(version_string)
else:
ds_version = args.branch.lstrip('v')
ds_version = parse_version(args.branch)
if args.decoder:
plat = platform.system().lower()