Skip to content

Commit

Permalink
Make capture_output non-positional in ExternalProgramTask (#2547)
Browse files Browse the repository at this point in the history
  • Loading branch information
adaitche authored and dlstadther committed Oct 21, 2018
1 parent 98b3df8 commit 00eaa95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luigi/contrib/external_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ExternalProgramTask(luigi.Task):
behaviour can be overriden by passing ``--capture-output False``
"""

capture_output = luigi.BoolParameter(default=True, significant=False)
capture_output = luigi.BoolParameter(default=True, significant=False, positional=False)

def program_args(self):
"""
Expand Down

0 comments on commit 00eaa95

Please sign in to comment.