public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r13731 - main/trunk/pym/portage/cache
@ 2009-06-28 21:14 Zac Medico (zmedico)
  0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2009-06-28 21:14 UTC (permalink / raw
  To: gentoo-commits

Author: zmedico
Date: 2009-06-28 21:14:11 +0000 (Sun, 28 Jun 2009)
New Revision: 13731

Modified:
   main/trunk/pym/portage/cache/metadata_overlay.py
Log:
Fix constructor to avoid TypeError when the "perms" keyword parameter is given.


Modified: main/trunk/pym/portage/cache/metadata_overlay.py
===================================================================
--- main/trunk/pym/portage/cache/metadata_overlay.py	2009-06-28 20:59:49 UTC (rev 13730)
+++ main/trunk/pym/portage/cache/metadata_overlay.py	2009-06-28 21:14:11 UTC (rev 13731)
@@ -16,6 +16,7 @@
 		*args, **config):
 		super_config = config.copy()
 		super_config.pop("gid", None)
+		super_config.pop("perms", None)
 		super(database, self).__init__(location, label, auxdbkeys,
 			*args, **super_config)
 		self.db_rw = db_rw(location, label, auxdbkeys, **config)




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-06-28 21:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-28 21:14 [gentoo-commits] portage r13731 - main/trunk/pym/portage/cache Zac Medico (zmedico)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox