projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47efccd
)
fix typo and missing classmethod declaration
author
Marius Mauch
<genone@gentoo.org>
Fri, 9 Nov 2007 16:35:05 +0000
(16:35 -0000)
committer
Marius Mauch
<genone@gentoo.org>
Fri, 9 Nov 2007 16:35:05 +0000
(16:35 -0000)
svn path=/main/trunk/; revision=8481
pym/portage/sets/shell.py
patch
|
blob
|
history
diff --git
a/pym/portage/sets/shell.py
b/pym/portage/sets/shell.py
index 286ad31da04bcbe761a66cd5de23c49e279a59da..ba1b2422fffeaccf9cde8b7f8aed860931b6a615 100644
(file)
--- a/
pym/portage/sets/shell.py
+++ b/
pym/portage/sets/shell.py
@@
-38,6
+38,7
@@
class CommandOutputSet(PackageSet):
self._setAtoms(text.split("\n"))
def singleBuilder(self, options, settings, trees):
- if not
command
in options:
+ if not
"command"
in options:
raise SetConfigError("no command specified")
return CommandOutputSet(options["command"])
+ singleBuilder = classmethod(singleBuilder)