Merge pull request #2820 from mozilla/taskcluster-py-nonstable
Correctly handle non stable versions in `--branch`
This commit is contained in:
commit
8ca087d955
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue