Fix a typo in a comment.
authorZac Medico <zmedico@gentoo.org>
Thu, 30 Jun 2011 12:49:18 +0000 (05:49 -0700)
committerZac Medico <zmedico@gentoo.org>
Thu, 30 Jun 2011 12:49:18 +0000 (05:49 -0700)
pym/portage/util/__init__.py

index f877362cdc4f17290d3aff9e1bd8aa6221f3612e..85b2adaf9c2b6723329ef95d6788f31cf56b97d4 100644 (file)
@@ -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]