From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QcGh7-0003FJ-Cq for garchives@archives.gentoo.org; Thu, 30 Jun 2011 12:50:10 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 279AB1C050; Thu, 30 Jun 2011 12:49:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D0C381C050 for ; Thu, 30 Jun 2011 12:49:36 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0D861B400C for ; Thu, 30 Jun 2011 12:49:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 161978003C for ; Thu, 30 Jun 2011 12:49:35 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <687502c050604b26e4c5e85339a2d9294672fe1f.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/__init__.py X-VCS-Directories: pym/portage/util/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 687502c050604b26e4c5e85339a2d9294672fe1f Date: Thu, 30 Jun 2011 12:49:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 77c4de8355d8efc5e0495bbef2d264d0 commit: 687502c050604b26e4c5e85339a2d9294672fe1f Author: Zac Medico gentoo org> AuthorDate: Thu Jun 30 12:49:18 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Jun 30 12:49:18 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D687502c0 Fix a typo in a comment. --- pym/portage/util/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/util/__init__.py b/pym/portage/util/__init__.py index f877362..85b2ada 100644 --- a/pym/portage/util/__init__.py +++ b/pym/portage/util/__init__.py @@ -688,7 +688,7 @@ def varexpand(mystring, mydict=3DNone): # behave like bash does when expanding a variable assignment # in a sourced file, in which case it performs backslash # removal for \\ and \$ but nothing more. Note that we don't - # handle escaped quotes here, since genconfig() uses shlex + # handle escaped quotes here, since getconfig() uses shlex # to handle that earlier. if (pos+1>=3Dlen(mystring)): newstring=3Dnewstring+mystring[pos]