Skip to content

Commit

Permalink
Change stderr/stdout suppress from None to False
Browse files Browse the repository at this point in the history
  • Loading branch information
gaow committed Mar 15, 2018
1 parent 7f9d759 commit cdd1573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/documentation/Targets_and_Actions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Option `stdout` is applicable to script-executing actions such as `bash` and `R` and redirect the standard out of the action to specified file. The value of the option should be a path-like object (`str`, `path`, etc), or `None`. The file will be opened in `append` mode so you will have to remove or truncate the file if the file already exists. If `stdout=False`, the output will be suppressed (redirect to `/dev/null` under linux)."
"Option `stdout` is applicable to script-executing actions such as `bash` and `R` and redirect the standard out of the action to specified file. The value of the option should be a path-like object (`str`, `path`, etc), or `False`. The file will be opened in `append` mode so you will have to remove or truncate the file if the file already exists. If `stdout=False`, the output will be suppressed (redirect to `/dev/null` under linux)."
]
},
{
Expand Down

0 comments on commit cdd1573

Please sign in to comment.