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 02EF2138BF3 for ; Sat, 15 Feb 2014 19:49:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 315E7E0A97; Sat, 15 Feb 2014 19:49:55 +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 B4FB4E0AA0 for ; Sat, 15 Feb 2014 19:49:54 +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 A406933FAB6 for ; Sat, 15 Feb 2014 19:49:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 69C301872B for ; Sat, 15 Feb 2014 19:49:51 +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: <1392490477.c220255d727063935f654df552f0b3767f504216.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/strutil.py X-VCS-Directories: roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: c220255d727063935f654df552f0b3767f504216 X-VCS-Branch: master Date: Sat, 15 Feb 2014 19:49:51 +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: 6da309d4-7240-4005-adbe-bb19c0c83f92 X-Archives-Hash: 46360e14e6f1228161ed2b99058e6905 commit: c220255d727063935f654df552f0b3767f504216 Author: André Erdmann mailerd de> AuthorDate: Sat Feb 15 18:54:37 2014 +0000 Commit: André Erdmann mailerd de> CommitDate: Sat Feb 15 18:54:37 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=c220255d roverlay/strutil.py, unquote(): fix keep_going unquote() needs to call itself with keep_going=True when operating recursively. --- roverlay/strutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roverlay/strutil.py b/roverlay/strutil.py index 7569523..9799477 100644 --- a/roverlay/strutil.py +++ b/roverlay/strutil.py @@ -100,7 +100,7 @@ def unquote ( _str, keep_going=False ): chars = '\"\'' if _str [0] == _str [-1] and _str [0] in chars: - return unquote ( _str[1:-1] ) if keep_going else _str[1:-1] + return unquote ( _str[1:-1], True ) if keep_going else _str[1:-1] return _str # --- end of unquote (...) ---