From 9ff0d2dee47ba4bd731203462ea55ad5942dad0d Mon Sep 17 00:00:00 2001 From: John Chilton Date: Wed, 29 Apr 2015 14:31:36 -0400 Subject: [PATCH] Bugfix for shed_lint --recursive. --- planemo/commands/cmd_shed_lint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)