diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-06-30 05:49:18 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-06-30 05:49:18 -0700 |
commit | 687502c050604b26e4c5e85339a2d9294672fe1f (patch) | |
tree | e0ccd3d3413d35bb20193fb5c537a3b3a916423a | |
parent | a3f0c99340a2784707d4613052074f9a73edcb49 (diff) | |
download | portage-687502c050604b26e4c5e85339a2d9294672fe1f.tar.gz portage-687502c050604b26e4c5e85339a2d9294672fe1f.tar.bz2 portage-687502c050604b26e4c5e85339a2d9294672fe1f.zip |
Fix a typo in a comment.
-rw-r--r-- | 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 f877362cd..85b2adaf9 100644 --- a/pym/portage/util/__init__.py +++ b/pym/portage/util/__init__.py @@ -688,7 +688,7 @@ def varexpand(mystring, mydict=None): # 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>=len(mystring)): newstring=newstring+mystring[pos] |