Skip to content

Commit

Permalink
Fix usage of config parameter within FindersManager
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Feb 25, 2019
1 parent 633c187 commit cdb781b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isort/finders.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def __init__(self, config, sections, finders=None):
if finders is not None:
self.finders = finders
self.finders = tuple(finder(config, sections) for finder in self.finders)
self.verbose = self.config.get('verbose', False)
self.verbose = config.get('verbose', False)

def find(self, module_name):
for finder in self.finders:
Expand Down

0 comments on commit cdb781b

Please sign in to comment.