summaryrefslogtreecommitdiff
path: root/daemons
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2022-09-08 15:40:03 -0500
committerTony Asleson <tasleson@redhat.com>2022-09-16 10:49:37 -0500
commit2c5762038a7d2877dca91593ca212e0e36802dc1 (patch)
tree41d6eace036c5ffc3547c7e983e9b9ec4da64338 /daemons
parentd51fb57f1abf9e24aa8c74df5ffd717e2d45c103 (diff)
downloadlvm2-2c5762038a7d2877dca91593ca212e0e36802dc1.tar.gz
lvmdbusd: Correct log_error for shell proxy
Diffstat (limited to 'daemons')
-rwxr-xr-xdaemons/lvmdbusd/lvm_shell_proxy.py.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/lvmdbusd/lvm_shell_proxy.py.in b/daemons/lvmdbusd/lvm_shell_proxy.py.in
index fb6ce6164..244fe93f5 100755
--- a/daemons/lvmdbusd/lvm_shell_proxy.py.in
+++ b/daemons/lvmdbusd/lvm_shell_proxy.py.in
@@ -297,7 +297,7 @@ if __name__ == "__main__":
except EOFError:
pass
except Exception as e:
- log_error("main process exiting on exception!\n%s", extract_stack_trace(e))
+ log_error("main process exiting on exception!\n%s" % extract_stack_trace(e))
sys.exit(1)
sys.exit(0)