Skip to content

Commit

Permalink
Merge pull request #382 from chenull/fix_handle_result
Browse files Browse the repository at this point in the history
fix details kwarg in handle_apply_result in node.py
  • Loading branch information
trehn committed Jan 1, 2018
2 parents c006f17 + adc7bd8 commit eda7d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundlewrap/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def handle_result(task_id, return_value, duration):
skipped_item,
Item.STATUS_SKIPPED,
interactive,
details=[_("dep failed")],
details=Item.SKIP_REASON_DEP_FAILED,
)
results.append((skipped_item.id, Item.STATUS_SKIPPED, timedelta(0)))
elif status_code in (Item.STATUS_FIXED, Item.STATUS_ACTION_SUCCEEDED):
Expand Down

0 comments on commit eda7d9e

Please sign in to comment.