[tests] Add Python3 test run
Add testrun to also verify Python3 functionality. + Immediately fix a Python3 incompatibility. see #23
This commit is contained in:
parent
a8a6c9bba2
commit
a720baf407
3 changed files with 5 additions and 3 deletions
|
@ -8,7 +8,7 @@ class Config(object):
|
|||
self._args = parser.parse_args(args)
|
||||
|
||||
def modules(self):
|
||||
return map(lambda x: { "name": x, "module": x }, self._args.modules)
|
||||
return list(map(lambda x: { "name": x, "module": x }, self._args.modules))
|
||||
|
||||
def _create_parser(self):
|
||||
parser = argparse.ArgumentParser(description="display system data in the i3bar")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue