Commit a9d6ca08 by Erich Blume Committed by Sébastien Eustace

Fix sonnet handling of single specified pythons (#719)

parent 39f83785
......@@ -37,8 +37,9 @@ class MakeReleaseCommand(Command):
for python in self.option("python"):
parts = python.split(":", 1)
if len(parts) == 1:
pythons[parts[0]] = self.PYTHON[parts[0]]
python = self.PYTHON[parts[0]]
version = parts[0]
else:
version, python = parts
pythons[version] = python
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment