Skip to content

Commit

Permalink
Bugfix: excluding hosts broke remainder tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Jun 22, 2011
1 parent 8a0023f commit 05aca97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabric/main.py
Expand Up @@ -695,7 +695,7 @@ def main():
if remainder_command:
r = '<remainder>'
state.commands[r] = lambda: api.run(remainder_command)
commands_to_run.append((r, [], {}, [], []))
commands_to_run.append((r, [], {}, [], [], []))

if state.output.debug:
names = ", ".join(x[0] for x in commands_to_run)
Expand Down

0 comments on commit 05aca97

Please sign in to comment.