From 771ba3e966b59a560d962f4e2a6ab40661eab564 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 16 Oct 2020 11:07:41 +0200 Subject: [PATCH] modified docstring --- pype/lib.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pype/lib.py b/pype/lib.py index f85d689ef9..a53aae2086 100644 --- a/pype/lib.py +++ b/pype/lib.py @@ -87,10 +87,10 @@ def _subprocess(*args, **kwargs): Entered arguments and keyword arguments are passed to subprocess Popen. Args: - logger (logging.Logger): Logger object if want to use different than - lib's logger. *args: Variable length arument list passed to Popen. - **kwargs : Arbitary keyword arguments passed to Popen. + **kwargs : Arbitary keyword arguments passed to Popen. Is possible to + pass `logging.Logger` object under "logger" if want to use + different than lib's logger. Returns: str: Full output of subprocess concatenated stdout and stderr.