Line too long at 'module.py'

parent ea29eb08
......@@ -139,7 +139,8 @@ class Module(ModuleContent):
# Include dirs
include_dirs = []
if self.manifest_dict["include_dirs"] is not None:
if isinstance(self.manifest_dict["include_dirs"], six.string_types):
if isinstance(self.manifest_dict["include_dirs"],
six.string_types):
dir_list = path_mod.compose(
self.path, self.manifest_dict["include_dirs"])
include_dirs.append(dir_list)
......
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