summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-07-27 17:52:33 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-07-27 17:52:33 -0500
commit35851347089db1a092ec715cb183aec19f19e983 (patch)
treeff1146409edb8fb5423b0713a63dc08d70329423 /src/lib/Bcfg2/Server
parent9e1f176d314dd629fb51a3d3c2f14562f88a6a20 (diff)
downloadbcfg2-35851347089db1a092ec715cb183aec19f19e983.tar.gz
bcfg2-35851347089db1a092ec715cb183aec19f19e983.tar.bz2
bcfg2-35851347089db1a092ec715cb183aec19f19e983.zip
MultiprocessingCore: Fix Cache import
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Bcfg2/Server')
-rw-r--r--src/lib/Bcfg2/Server/MultiprocessingCore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/MultiprocessingCore.py b/src/lib/Bcfg2/Server/MultiprocessingCore.py
index 02710ab99..b9716619d 100644
--- a/src/lib/Bcfg2/Server/MultiprocessingCore.py
+++ b/src/lib/Bcfg2/Server/MultiprocessingCore.py
@@ -26,8 +26,8 @@ The parent communicates with the children over two constructs:
import threading
import lxml.etree
import multiprocessing
-from Bcfg2.Cache import Cache
from Bcfg2.Compat import Queue
+from Bcfg2.Server.Cache import Cache
from Bcfg2.Server.Core import BaseCore, exposed
from Bcfg2.Server.Plugin import Debuggable
from Bcfg2.Server.BuiltinCore import Core as BuiltinCore