diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-09-25 17:51:07 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-09-25 17:51:07 -0700 |
commit | 9fcaf538d23d2e9ac531775323a524bb9fe4f2f7 (patch) | |
tree | 3cc0ac95836fc47578b78e06040f13ae5777b9f0 | |
parent | Add non-essential backslashes for clarity in GetConfigTestCase. (diff) | |
download | portage-9fcaf538d23d2e9ac531775323a524bb9fe4f2f7.tar.gz portage-9fcaf538d23d2e9ac531775323a524bb9fe4f2f7.tar.bz2 portage-9fcaf538d23d2e9ac531775323a524bb9fe4f2f7.zip |
Fix a typo in a comment.
-rw-r--r-- | pym/portage/util/__init__.py | 2 |
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]!="\\"): |