Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/
Date: Thu, 30 Jun 2011 12:50:10
Message-Id: 687502c050604b26e4c5e85339a2d9294672fe1f.zmedico@gentoo
1 commit: 687502c050604b26e4c5e85339a2d9294672fe1f
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 12:49:18 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 12:49:18 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=687502c0
7
8 Fix a typo in a comment.
9
10 ---
11 pym/portage/util/__init__.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/portage/util/__init__.py b/pym/portage/util/__init__.py
15 index f877362..85b2ada 100644
16 --- a/pym/portage/util/__init__.py
17 +++ b/pym/portage/util/__init__.py
18 @@ -688,7 +688,7 @@ def varexpand(mystring, mydict=None):
19 # behave like bash does when expanding a variable assignment
20 # in a sourced file, in which case it performs backslash
21 # removal for \\ and \$ but nothing more. Note that we don't
22 - # handle escaped quotes here, since genconfig() uses shlex
23 + # handle escaped quotes here, since getconfig() uses shlex
24 # to handle that earlier.
25 if (pos+1>=len(mystring)):
26 newstring=newstring+mystring[pos]