diff --git a/planemo/commands/cmd_shed_lint.py b/planemo/commands/cmd_shed_lint.py index bf65183b4..607a85aae 100644 --- a/planemo/commands/cmd_shed_lint.py +++ b/planemo/commands/cmd_shed_lint.py @@ -20,12 +20,12 @@ @options.lint_xsd_option() @options.recursive_shed_option() @pass_context -def cli(ctx, path, recursive=False, **kwds): +def cli(ctx, path, **kwds): """Check a Tool Shed repository for common problems. """ def lint(realized_repository): path = realized_repository.real_path return shed_lint.lint_repository(ctx, path, **kwds) - exit_code = shed.for_each_repository(lint, path) + exit_code = shed.for_each_repository(lint, path, **kwds) sys.exit(exit_code)