From 60e28e9577353c1ee2dd3f9901bfed5fbfcfb3c5 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Mon, 28 Jan 2008 20:21:22 -0500 Subject: Revert "debug info" This reverts commit 4c602438c47b2ca6317540eb59b37dfc5f354926. --- func/minion/module_loader.py | 3 +-- func/minion/modules/netapp/vol/clone.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/func/minion/module_loader.py b/func/minion/module_loader.py index 05bb3bd..3068ea8 100755 --- a/func/minion/module_loader.py +++ b/func/minion/module_loader.py @@ -80,12 +80,11 @@ def load_modules(blacklist=None): try: # Auto-detect and load all FuncModules - logger.debug("Trying to load modues.%s" % mod_imp_name) blip = __import__("modules.%s" % ( mod_imp_name), globals(), locals(), [mod_imp_name]) for obj in dir(blip): attr = getattr(blip, obj) if isclass(attr) and issubclass(attr, func_module.FuncModule): - logger.debug("Loading %s module flibby" % attr) + logger.debug("Loading %s module" % attr) mods[mod_imp_name] = attr() except ImportError, e: diff --git a/func/minion/modules/netapp/vol/clone.py b/func/minion/modules/netapp/vol/clone.py index 9f6b297..510c37d 100644 --- a/func/minion/modules/netapp/vol/clone.py +++ b/func/minion/modules/netapp/vol/clone.py @@ -21,7 +21,7 @@ class Clone(func_module.FuncModule): # Update these if need be. version = "0.0.1" api_version = "0.0.1" - description = "Interface to the 'vol clone' command" + description = "Interface to the 'vol' command" def create(self, filer, args): """ -- cgit