svn path=/trunk/gentoolkit/; revision=732
+2009-01-08: Paul Varner <fuzzyray@gentoo.org>
+ * epkginfo/equery: Fix expkinfo to not traceback if herds.xml is not
+ present in the tree. (Bug 300108)
+
2009-12-17: Paul Varner <fuzzyray@gentoo.org>
* revdep-rebuild: Fix revdep-rebuild to properly honor
PORTAGE_NICENESS as an incremental to the current nice level (Bug
if self._herdstree is None:
herds_path = os.path.join(settings['PORTDIR'], 'metadata/herds.xml')
- self._herdstree = etree.parse(herds_path)
+ try:
+ self._herdstree = etree.parse(herds_path)
+ except IOError:
+ return None
# Some special herds are not listed in herds.xml
if herd in ('no-herd', 'maintainer-wanted', 'maintainer-needed'):