aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-10-02 15:53:39 -0700
committerZac Medico <zmedico@gentoo.org>2011-10-02 15:53:39 -0700
commit814200b68822ed2681dc434631c99ad3c9251fc8 (patch)
tree35e09c3e796eb41437c4c82e13352fe48e5ec97a /pym/portage
parentPrefer slot conflict over blocker display. (diff)
downloadportage-814200b68822ed2681dc434631c99ad3c9251fc8.tar.gz
portage-814200b68822ed2681dc434631c99ad3c9251fc8.tar.bz2
portage-814200b68822ed2681dc434631c99ad3c9251fc8.zip
Manifest.create(): pass allow_* to constructor
This fixes commit f3101b3adce6731790f80f83fafece54b7bd8a63 to ensure that Manifest.create() works correctly.
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/manifest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py
index 49c05bd48..9db8acc1e 100644
--- a/pym/portage/manifest.py
+++ b/pym/portage/manifest.py
@@ -349,7 +349,8 @@ class Manifest(object):
distfilehashes = {}
self.__init__(self.pkgdir, self.distdir,
fetchlist_dict=self.fetchlist_dict, from_scratch=True,
- thin=self.thin)
+ thin=self.thin, allow_missing=self.allow_missing,
+ allow_create=self.allow_create)
pn = os.path.basename(self.pkgdir.rstrip(os.path.sep))
cat = self._pkgdir_category()