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 B9035138CD0 for ; Wed, 1 Jul 2015 18:13:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67D93E080A; Wed, 1 Jul 2015 18:13:04 +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 0FF0FE080A for ; Wed, 1 Jul 2015 18:13:03 +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 EAA993407E2 for ; Wed, 1 Jul 2015 18:13:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21D25739 for ; Wed, 1 Jul 2015 18:12:59 +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: <1435774515.28e04f00d36766d8aa78c9ffabe5bcfeb6f1ee88.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: / X-VCS-Repository: proj/grss X-VCS-Files: grsup X-VCS-Directories: / X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 28e04f00d36766d8aa78c9ffabe5bcfeb6f1ee88 X-VCS-Branch: master Date: Wed, 1 Jul 2015 18:12:59 +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: c8281b4d-3371-47ed-9db6-9c8af3a69783 X-Archives-Hash: fe881c87733b6d13a53d2ecb0a22bece commit: 28e04f00d36766d8aa78c9ffabe5bcfeb6f1ee88 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jul 1 18:15:15 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jul 1 18:15:15 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=28e04f00 grsup: fix syntax error in arg order. grsup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grsup b/grsup index 3bab876..69decfc 100755 --- a/grsup +++ b/grsup @@ -21,7 +21,7 @@ from portage.exception import IsADirectory, ParseError, PermissionDenied from portage import setting -def install_kernel(version = 'latest', logfile): +def install_kernel(version = 'latest', logfile = CONST.LOGFILE): """ doc here more doc """