From e326d4e5d7176b7bb3d754647ee2e6e37c2a3267 Mon Sep 17 00:00:00 2001 From: Guido Trotter Date: Wed, 13 Aug 2008 14:23:55 +0000 Subject: [PATCH] Convert RunCmd to an epydoc docstring Reviewed-by: imsnah --- lib/utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/utils.py b/lib/utils.py index 479e267..54df210 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -108,10 +108,10 @@ def RunCmd(cmd): The command should not read from its standard input, as it will be closed. - Args: - cmd: command to run. (str) - - Returns: `RunResult` instance + @param cmd: Command to run + @type cmd: string or list + @return: `RunResult` instance + @rtype: RunResult """ if no_fork: -- 1.7.10.4