projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
854abf1
)
Fix broken reference to "categories" in CategorySet.singleBuilder(). Thanks
author
Zac Medico
<zmedico@gentoo.org>
Mon, 28 Jul 2008 21:46:23 +0000
(21:46 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Mon, 28 Jul 2008 21:46:23 +0000
(21:46 -0000)
to Thargor for reporting.
svn path=/main/trunk/; revision=11250
pym/portage/sets/dbapi.py
patch
|
blob
|
history
diff --git
a/pym/portage/sets/dbapi.py
b/pym/portage/sets/dbapi.py
index bacc3a5c5b07c4685a0daf731ec4f7ab95cfcba0..5352a32f3e444896733a1074218a8e9d0aacc46a 100644
(file)
--- a/
pym/portage/sets/dbapi.py
+++ b/
pym/portage/sets/dbapi.py
@@
-70,7
+70,7
@@
class CategorySet(PackageSet):
raise SetConfigError("no category given")
category = options["category"]
- if not category in categories:
+ if not category in
settings.
categories:
raise SetConfigError("invalid category name '%s'" % category)
repository = cls._builderGetRepository(options, trees.keys())