[tests] Add Python3 test run

Add testrun to also verify Python3 functionality.

+ Immediately fix a Python3 incompatibility.

see #23
This commit is contained in:
Tobi-wan Kenobi 2016-12-03 20:45:52 +01:00
parent a8a6c9bba2
commit a720baf407
3 changed files with 5 additions and 3 deletions

View file

@ -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")