From: Zac Medico Date: Thu, 30 Jun 2011 12:49:18 +0000 (-0700) Subject: Fix a typo in a comment. X-Git-Tag: v2.2.0_alpha42~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=687502c050604b26e4c5e85339a2d9294672fe1f;p=portage.git Fix a typo in a comment. --- 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]