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 18E80138A3B for ; Sat, 25 Jan 2014 18:15:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1FCBE0B1E; Sat, 25 Jan 2014 18:15:05 +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 86E4DE0B1E for ; Sat, 25 Jan 2014 18:15:05 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB72633D8F2 for ; Sat, 25 Jan 2014 18:15:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 74EC018817 for ; Sat, 25 Jan 2014 18:14:58 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1390672841.e1dd305c2b73b427e3d5c1a8a05d96f852c704a0.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/util/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/util/ebuildparser.py X-VCS-Directories: roverlay/util/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: e1dd305c2b73b427e3d5c1a8a05d96f852c704a0 X-VCS-Branch: master Date: Sat, 25 Jan 2014 18:14:58 +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: 560a3f98-cbd2-4348-9e69-c570ed72a57a X-Archives-Hash: 715c9deed03ed1a2c4f22e490ee3415c commit: e1dd305c2b73b427e3d5c1a8a05d96f852c704a0 Author: André Erdmann mailerd de> AuthorDate: Sat Jan 25 18:00:41 2014 +0000 Commit: André Erdmann mailerd de> CommitDate: Sat Jan 25 18:00:41 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=e1dd305c roverlay/util/ebuildparser: fix typo foreach_str(), not str_foreach() Introduced by 326a51e15095d3062f0e6b4b39ea27b247324ea9. --- roverlay/util/ebuildparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roverlay/util/ebuildparser.py b/roverlay/util/ebuildparser.py index 2ce8d9f..e3b926c 100644 --- a/roverlay/util/ebuildparser.py +++ b/roverlay/util/ebuildparser.py @@ -147,7 +147,7 @@ class EbuildParser ( object ): if self.unquote_value: return { - varname: roverlay.strutil.str_foreach ( + varname: roverlay.strutil.foreach_str ( roverlay.strutil.unquote, value ) for varname, value in data.items() }