diff options
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r-- | mesonbuild/mconf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 0d3f702..8ddf4fe 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -195,10 +195,10 @@ class Conf: opt = options[key] if (opt.choices is None) or (len(opt.choices) == 0): # Zero length list or string - choices = ''; + choices = '' else: # A non zero length list or string, convert to string - choices = str(opt.choices); + choices = str(opt.choices) optarr.append([key, opt.description, opt.value, choices]) self.print_aligned(optarr) print('') |