Skip to content

Commit 9ff0d2d

Browse files
committed
Bugfix for shed_lint --recursive.
1 parent a2ee135 commit 9ff0d2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

planemo/commands/cmd_shed_lint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
@options.lint_xsd_option()
2121
@options.recursive_shed_option()
2222
@pass_context
23-
def cli(ctx, path, recursive=False, **kwds):
23+
def cli(ctx, path, **kwds):
2424
"""Check a Tool Shed repository for common problems.
2525
"""
2626
def lint(realized_repository):
2727
path = realized_repository.real_path
2828
return shed_lint.lint_repository(ctx, path, **kwds)
2929

30-
exit_code = shed.for_each_repository(lint, path)
30+
exit_code = shed.for_each_repository(lint, path, **kwds)
3131
sys.exit(exit_code)

0 commit comments

Comments
 (0)