Blob Blame History Raw
From 0f5330c9cd9250450bb04b680aadc6e142fc19d1 Mon Sep 17 00:00:00 2001
From: Orion Poplawski <orion@cora.nwra.com>
Date: Mon, 12 Jun 2017 10:55:54 -0600
Subject: [PATCH] Add missing cobbler module paths to a couple modules after
 #1751 backport

---
 cobbler/modules/authz_ownership.py  | 2 +-
 cobbler/modules/serializer_couch.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cobbler/modules/authz_ownership.py b/cobbler/modules/authz_ownership.py
index 150864787..b3053bcb5 100644
--- a/cobbler/modules/authz_ownership.py
+++ b/cobbler/modules/authz_ownership.py
@@ -28,7 +28,7 @@
 import os
 
 from cobbler.utils import _
-from cexceptions import CX
+from cobbler.cexceptions import CX
 
 
 def register():
diff --git a/cobbler/modules/serializer_couch.py b/cobbler/modules/serializer_couch.py
index 0581b43c9..5d69b4683 100644
--- a/cobbler/modules/serializer_couch.py
+++ b/cobbler/modules/serializer_couch.py
@@ -23,7 +23,7 @@
 
 import yaml # PyYAML
 import simplejson
-import couch
+from cobbler import couch
 
 typez = [ "distro", "profile", "system", "image", "repo" ]
 couchdb = couch.Couch('127.0.0.1')