summaryrefslogtreecommitdiff
path: root/daemons/lvmdbusd
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2022-08-09 17:45:04 -0500
committerTony Asleson <tasleson@redhat.com>2022-09-16 10:49:36 -0500
commitc13efb2ffc90853884e77f0d2b28e8d1936c74d0 (patch)
tree1cef02f1a5f42e4f7618be0202a214bf39884a96 /daemons/lvmdbusd
parentb3d8366ff21ee69380ab5fbca48204212a64a0cd (diff)
downloadlvm2-c13efb2ffc90853884e77f0d2b28e8d1936c74d0.tar.gz
lvmdbusd: Remove unneeded command line args
Diffstat (limited to 'daemons/lvmdbusd')
-rw-r--r--daemons/lvmdbusd/cmdhandler.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/daemons/lvmdbusd/cmdhandler.py b/daemons/lvmdbusd/cmdhandler.py
index 0c4d5cb61..7b3ad528b 100644
--- a/daemons/lvmdbusd/cmdhandler.py
+++ b/daemons/lvmdbusd/cmdhandler.py
@@ -234,8 +234,7 @@ call = time_wrapper
# Default cmd
# Place default arguments for every command here.
def _dc(cmd, args):
- c = [cmd, '--noheading', '--separator', '%s' % SEP, '--nosuffix',
- '--unbuffered', '--units', 'b']
+ c = [cmd, '--nosuffix', '--unbuffered', '--units', 'b']
c.extend(args)
return c