Skip to content

Commit

Permalink
Merge pull request #191 from etalab/fix-harvest-commands
Browse files Browse the repository at this point in the history
Fix udata harvest run command
  • Loading branch information
noirbizarre committed Oct 5, 2015
2 parents bf12f81 + 7aef55a commit c972f2c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions udata/harvest/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,10 @@ def launch(identifier):


@m.option('identifier', help='The Harvest source identifier or slug')
@m.option('-d', '--debug', action='store_true', default=False, help='Debug/dry_run')
def run(identifier, debug=False):
def run(identifier):
'''Run an harvester synchronously'''
log.info('Harvest source "%s"', identifier)
actions.run(identifier, debug=debug)
actions.run(identifier)


@m.option('identifier', help='The Harvest source identifier or slug')
Expand Down

0 comments on commit c972f2c

Please sign in to comment.