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 4F7A91382DE for ; Sat, 2 Jul 2016 19:26:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEED014010; Sat, 2 Jul 2016 19:25:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4466514010 for ; Sat, 2 Jul 2016 19:25:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11BD0340DC7 for ; Sat, 2 Jul 2016 19:25:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BBD12413 for ; Sat, 2 Jul 2016 19:25:48 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1467487388.f833f30eb2bb32f941d92ceb22e40e7daa0f4ea2.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: testpath X-VCS-Directories: / X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: f833f30eb2bb32f941d92ceb22e40e7daa0f4ea2 X-VCS-Branch: master Date: Sat, 2 Jul 2016 19:25:48 +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: ea185613-7588-483d-8463-8bbf6f3e50d7 X-Archives-Hash: cbd5b416b8543c91ef987f97784cb03b commit: f833f30eb2bb32f941d92ceb22e40e7daa0f4ea2 Author: Brian Dolbec gentoo org> AuthorDate: Sat Jul 2 19:23:08 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Jul 2 19:23:08 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=f833f30e testpath: fix missed newline testpath | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testpath b/testpath index 7a66fd64..d987301 100644 --- a/testpath +++ b/testpath @@ -12,4 +12,5 @@ if [[ "$SHELL" =~ "zsh" ]]; then else export PATH="$(dirname ${BASH_SOURCE[0]})/bin:${PATH}" export PYTHONPATH=PYTHONPATH="$(dirname $BASH_SOURCE[0])/pym:${PYTHONPATH:+:}${PYTHONPATH}" -fiexport PYTHONWARNINGS=d,i::ImportWarning +fi +export PYTHONWARNINGS=d,i::ImportWarning