From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 58281138806 for ; Tue, 26 Dec 2017 00:04:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CC97E0F05; Tue, 26 Dec 2017 00:04:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BB7FE0F05 for ; Tue, 26 Dec 2017 00:04:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48A3833BEED for ; Tue, 26 Dec 2017 00:04:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FDBFAE8F for ; Tue, 26 Dec 2017 00:04:43 +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: <1514245281.eb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Interpret.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: eb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3 X-VCS-Branch: master Date: Tue, 26 Dec 2017 00:04:43 +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: b1237eb2-31ca-42c6-9b20-f0854f8b6769 X-Archives-Hash: 926fe6de350f27176c47395876c310fc commit: eb8e68b4cd1ff1f90dcf93ed8c1a58f71f4332d3 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Dec 25 23:41:21 2017 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Dec 25 23:41:21 2017 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=eb8e68b4 grs/Interpret.py: fix typo grs/Interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Interpret.py b/grs/Interpret.py index d6fdad9..9baf41b 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -135,7 +135,7 @@ class Interpret(Daemon): _ke = Kernel(libdir, portage_configroot, kernelroot, package, logfile) _bi = TarIt(name, portage_configroot, logfile) _io = ISOIt(name, libdir, tmpdir, portage_configroot, logfile) - _nb - Netboot(name, libdir, tmpdir, portage_configroot, kernelroot, logfile) + _nb = Netboot(name, libdir, tmpdir, portage_configroot, kernelroot, logfile) # Just in case /var/tmp/grs doesn't already exist. os.makedirs(tmpdir, mode=0o755, exist_ok=True)