summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/util/__init__.py')
-rw-r--r--pym/portage/util/__init__.py2
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]