[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH 2/3] Log commands as a string instead of as a list of strings.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: Re: [PATCH 2/3] Log commands as a string instead of as a list of strings.
- Date: Wed, 3 Feb 2010 14:49:13 -0500
> diff --git a/iutil.py b/iutil.py
> index 3fb4057..872915d 100644
> --- a/iutil.py
> +++ b/iutil.py
> @@ -105,7 +105,7 @@ def execWithRedirect(command, argv, stdin = None, stdout = None,
> elif stderr is None or not isinstance(stderr, file):
> stderr = sys.stderr.fileno()
>
> - program_log.info("Running... %s" % ([command] + argv,))
> + program_log.info("Running... %s" % (" ".join([command] + argv),))
>
> #prepare os pipes for feeding tee proceses
> pstdout, pstdin = os.pipe()
> @@ -201,7 +201,7 @@ def execWithCapture(command, argv, stdin = None, stderr = None, root='/'):
> elif stderr is None or not isinstance(stderr, file):
> stderr = sys.stderr.fileno()
>
> - program_log.info("Running... %s" % ([command] + argv,))
> + program_log.info("Running... %s" % (" ".join([command] + argv),))
>
> env = os.environ.copy()
> env.update({"LC_ALL": "C"})
> @@ -273,7 +273,7 @@ def execWithCallback(command, argv, stdin = None, stdout = None,
> elif stderr is None or not isinstance(stderr, file):
> stderr = sys.stderr.fileno()
>
> - program_log.info("Running... %s" % ([command] + argv,))
> + program_log.info("Running... %s" % (" ".join([command] + argv),))
>
> p = os.pipe()
> p_stderr = os.pipe()
Yes, please.
- Chris
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]