From 113c4a0715b1d172880d155b598bd6dc7dc1d92d Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Tue, 19 Jun 2012 00:06:15 -0600 Subject: [PATCH] remove hook to cloud module --- saltcloud/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/saltcloud/cli.py b/saltcloud/cli.py index cde9beed57..57f84a7322 100644 --- a/saltcloud/cli.py +++ b/saltcloud/cli.py @@ -84,7 +84,7 @@ class SaltCloud(object): salt.log.set_logger_level(name, level) import logging # If statement here for when cloud query is added - import saltcloud.create - create = saltcloud.create.Create(self.opts) - create.run_data() + import saltcloud + cloud = saltcloud.Cloud(self.opts) + cloud.run_data()