summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-12-20 08:17:42 +0000
committerZac Medico <zmedico@gentoo.org>2007-12-20 08:17:42 +0000
commitff4eb7c69aa34a3593dd261634918887ebb2bc9a (patch)
treeb8a7ffcc87c81e59a2cb76ce84695c947f496b7b /pym
parentd3fdc5fb4e4baa4ff798c455e744e4f2e88c556c (diff)
downloadportage-ff4eb7c69aa34a3593dd261634918887ebb2bc9a.tar.gz
portage-ff4eb7c69aa34a3593dd261634918887ebb2bc9a.tar.bz2
portage-ff4eb7c69aa34a3593dd261634918887ebb2bc9a.zip
Fix a type: eclasses -> eclass.
svn path=/main/trunk/; revision=8978
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/porttree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index be2015628..c8e8be56c 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -73,7 +73,7 @@ class portdbapi(dbapi):
# missing. This check allows aux_get() to detect a missing
# portage tree and return early by raising a KeyError.
self._have_root_eclass_dir = os.path.isdir(
- os.path.join(self.porttree_root, "eclasses"))
+ os.path.join(self.porttree_root, "eclass"))
self.metadbmodule = self.mysettings.load_best_module("portdbapi.metadbmodule")