Fix bug in PerMachine constructor

Don't make single element tuple
pull/4438/head
John Ericson 6 years ago committed by Nirbheek Chauhan
parent 1c2cfe4529
commit 807981889f
  1. 2
      mesonbuild/mesonlib.py

@ -307,7 +307,7 @@ MachineChoice = OrderedEnum('MachineChoice', ['BUILD', 'HOST', 'TARGET'])
class PerMachine:
def __init__(self, build, host, target):
self.build = build,
self.build = build
self.host = host
self.target = target

Loading…
Cancel
Save