summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 8ba6b6c81..0b0e0435e 100644
--- a/pym/portage/util/__init__.py
+++ b/pym/portage/util/__init__.py
@@ -663,7 +663,7 @@ def varexpand(mystring, mydict=None):
elif a!='\n':
# Remove backslash only, as bash does. This takes care
# of \\. Note that we don't handle quotes here since
- # quote remoal is handled by shlex.
+ # quote removal is handled by shlex.
newstring=newstring+mystring[pos-1:pos]
continue
elif (mystring[pos]=="$") and (mystring[pos-1]!="\\"):