27 lines
703 B
Diff
27 lines
703 B
Diff
From d1ed4ce6ce9f201435af61982a36f97e9d9d2f94 Mon Sep 17 00:00:00 2001
|
|
From: Adam Williamson <awilliam@redhat.com>
|
|
Date: Tue, 21 Mar 2023 11:46:54 -0700
|
|
Subject: [PATCH] Fix import of utils from lvmdbusd.cfg
|
|
|
|
Signed-off-by: Adam Williamson <awilliam@redhat.com>
|
|
---
|
|
daemons/lvmdbusd/cfg.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/daemons/lvmdbusd/cfg.py b/daemons/lvmdbusd/cfg.py
|
|
index 9da4b1267..9f4360100 100644
|
|
--- a/daemons/lvmdbusd/cfg.py
|
|
+++ b/daemons/lvmdbusd/cfg.py
|
|
@@ -11,7 +11,7 @@ import os
|
|
import multiprocessing
|
|
import queue
|
|
import itertools
|
|
-from utils import LvmDebugData
|
|
+from lvmdbusd.utils import LvmDebugData
|
|
|
|
from lvmdbusd import path
|
|
|
|
--
|
|
2.40.0
|
|
|