From 7412690dd2ca55d0a790ba50a3425565758130ce Mon Sep 17 00:00:00 2001 From: Tony Asleson Date: Mon, 29 Aug 2016 18:00:21 -0500 Subject: [PATCH] lvmdbusd: Prefix tag string with '@' --- daemons/lvmdbusd/cmdhandler.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/daemons/lvmdbusd/cmdhandler.py b/daemons/lvmdbusd/cmdhandler.py index 2739497bd..c8c7baab1 100644 --- a/daemons/lvmdbusd/cmdhandler.py +++ b/daemons/lvmdbusd/cmdhandler.py @@ -235,10 +235,7 @@ def pv_remove(device, remove_options): def _qt(tag_name): - # When running in lvm shell you need to quote the tags - if cfg.SHELL_IN_USE: - return '"%s"' % tag_name - return tag_name + return '@%s' % tag_name def _tag(operation, what, add, rm, tag_options):