summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-05-26 16:02:00 +0200
committerJan Pokorný <jpokorny@redhat.com>2014-05-26 16:02:00 +0200
commitd7b4369b0022c637039fe0183e8209216f894b9b (patch)
tree0c3337d1e83d21feefbd56bc20bed02cf41ce7be /command.py
parent1b25454f0edcad6a7d3240cc6e93e6ad0d7cb727 (diff)
downloadclufter-d7b4369b0022c637039fe0183e8209216f894b9b.tar.gz
clufter-d7b4369b0022c637039fe0183e8209216f894b9b.tar.xz
clufter-d7b4369b0022c637039fe0183e8209216f894b9b.zip
Add "quiet" general parameter and make XMLFilter honor it
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'command.py')
-rw-r--r--command.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/command.py b/command.py
index 29d0f3a..a61ceb3 100644
--- a/command.py
+++ b/command.py
@@ -421,6 +421,7 @@ class Command(object):
'filter_noop': getattr(opts, 'noop', ()),
'system': getattr(opts, 'sys', ''),
'system_extra': getattr(opts, 'dist', '').split(','),
+ 'quiet': getattr(opts, 'quiet', False),
})
cmd_ctxt.ensure_filters(apply_intercalate(self._filter_chain))
io_driver = any2iter(self._fnc(cmd_ctxt, **kwargs))