From: Zac Medico Date: Sun, 26 Sep 2010 00:51:07 +0000 (-0700) Subject: Fix a typo in a comment. X-Git-Tag: v2.2_rc87~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9fcaf538d23d2e9ac531775323a524bb9fe4f2f7;p=portage.git Fix a typo in a comment. --- 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]!="\\"):