From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A02C31393F1 for ; Wed, 16 Sep 2015 00:37:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A36EE083A; Wed, 16 Sep 2015 00:37:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5243E083A for ; Wed, 16 Sep 2015 00:37:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F8E434090F for ; Wed, 16 Sep 2015 00:37:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92ED91F4 for ; Wed, 16 Sep 2015 00:37:44 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1442364145.9d17125630f15b8219a5b967c14fae1a4a4936bc.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Execute.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 9d17125630f15b8219a5b967c14fae1a4a4936bc X-VCS-Branch: master Date: Wed, 16 Sep 2015 00:37:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7c09237f-b594-4982-9275-d88d736a67bb X-Archives-Hash: 9067c1cde6ddbf8357f033ae494f8f3a commit: 9d17125630f15b8219a5b967c14fae1a4a4936bc Author: Anthony G. Basile gentoo org> AuthorDate: Wed Sep 16 00:42:25 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Sep 16 00:42:25 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=9d171256 grs/Execute.py: fix typo. grs/Execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Execute.py b/grs/Execute.py index 32286ec..355fbe8 100644 --- a/grs/Execute.py +++ b/grs/Execute.py @@ -27,7 +27,7 @@ from grs.Constants import CONST class Execute(): """ Execute a shell command """ - def __init__(self, cmd, timeout = 1, extra_env = {}, failok = False, shell = False \ + def __init__(self, cmd, timeout = 1, extra_env = {}, failok = False, shell = False, \ logfile = CONST.LOGFILE): """ Execute a shell command.