diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-09-21 20:07:01 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-09-21 20:07:01 -0700 |
commit | 5145ae6529e2b5e0b9ed0364cc42048fca482b86 (patch) | |
tree | 5330ef69dca8bedcc94f2fb194866b6e182fdc16 | |
parent | b1499b75233e8cd2c1848ccd2ba4cb26c555140e (diff) | |
download | portage-5145ae6529e2b5e0b9ed0364cc42048fca482b86.tar.gz portage-5145ae6529e2b5e0b9ed0364cc42048fca482b86.tar.bz2 portage-5145ae6529e2b5e0b9ed0364cc42048fca482b86.zip |
Fix a typo in a comment.
-rw-r--r-- | pym/_emerge/Binpkg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/Binpkg.py b/pym/_emerge/Binpkg.py index aadd625bf..7fc11ea59 100644 --- a/pym/_emerge/Binpkg.py +++ b/pym/_emerge/Binpkg.py @@ -40,7 +40,7 @@ class Binpkg(CompositeTask): self._verify = not self.opts.pretend # Use realpath like doebuild_environment() does, since we assert - # that this is path is literally identical to PORTAGE_BUILDDIR. + # that this path is literally identical to PORTAGE_BUILDDIR. dir_path = os.path.join(os.path.realpath(settings["PORTAGE_TMPDIR"]), "portage", pkg.category, pkg.pf) self._image_dir = os.path.join(dir_path, "image") |