Skip to content

Commit

Permalink
Bugfix for shed_lint --recursive.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Apr 29, 2015
1 parent a2ee135 commit 9ff0d2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planemo/commands/cmd_shed_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 9ff0d2d

Please sign in to comment.