summaryrefslogtreecommitdiffstats
path: root/pym/portage/sets/shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/sets/shell.py')
-rw-r--r--pym/portage/sets/shell.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/sets/shell.py b/pym/portage/sets/shell.py
index baef6dee0..2383dba81 100644
--- a/pym/portage/sets/shell.py
+++ b/pym/portage/sets/shell.py
@@ -12,6 +12,7 @@ class CommandOutputSet(PackageSet):
def __init__(self, name, command):
super(CommandOutputSet, self).__init__(name)
self._command = command
+ self.description = "Package set generated from output of '%s'" % self._command
def load(self):
pipe = subprocess.Popen(self._command, stdout=subprocess.PIPE, shell=True)