From 05cd9f160986d74d0556f896bcef748db152dc8c Mon Sep 17 00:00:00 2001 From: Mikhail Date: Fri, 2 Dec 2016 11:43:27 +0300 Subject: [PATCH] Fix import Fix import objects Node Change-Id: I8efcad46ea039b54f08f28dbd286c33d9218fa7b Closes-Bug: #1646475 --- nailgun/nailgun/objects/cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nailgun/nailgun/objects/cluster.py b/nailgun/nailgun/objects/cluster.py index fa31584eb1..3c27786e92 100644 --- a/nailgun/nailgun/objects/cluster.py +++ b/nailgun/nailgun/objects/cluster.py @@ -884,7 +884,7 @@ class Cluster(NailgunObject): :param nodes: list of Node db objects :param tag: string with known tag name """ - from objects import Node + from nailgun.objects import Node node = cls.get_primary_node(instance, tag) if not node: # get nodes with a given role name which are not going to be