From 11ef0fc50960f0e515d40d732727adfd09adc121 Mon Sep 17 00:00:00 2001 From: James Scott Date: Sat, 25 Jan 2014 13:00:17 -0800 Subject: [PATCH] Update for api change --- imhotep_pep8/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imhotep_pep8/plugin.py b/imhotep_pep8/plugin.py index b85be12..bbe3bd4 100644 --- a/imhotep_pep8/plugin.py +++ b/imhotep_pep8/plugin.py @@ -4,7 +4,7 @@ class Pep8Linter(Tool): regex = re.compile(r'(?P.*):(?P\d+):\d+: (?P.*)') - def invoke(self, dirname, filenames=set()): + def invoke(self, dirname, filenames=set(), linter_configs=set()): retval = defaultdict(lambda: defaultdict(list)) cmd = 'find %s -name "*.py" | xargs pep8' % dirname