Skip to content

Commit b3871fe

Browse files
authored
Fix for python 3.5 (#38)
1 parent b05a9b4 commit b3871fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/fireci/fireci/plugins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ def discover():
2929
"""
3030
modules = pkgutil.iter_modules(fireciplugins.__path__,
3131
fireciplugins.__name__ + ".")
32-
for module in modules:
33-
importlib.import_module(module.name)
32+
for _, name, _ in modules:
33+
importlib.import_module(name)

0 commit comments

Comments
 (0)