From 56079ae097f72c9cc904894bc025688b569077fd Mon Sep 17 00:00:00 2001 From: Tomas Gavenciak Date: Sat, 18 Sep 2010 09:33:24 +0200 Subject: [PATCH] Minor fix in util.py --- t/moe/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/moe/util.py b/t/moe/util.py index a2ef34e..d287ff8 100644 --- a/t/moe/util.py +++ b/t/moe/util.py @@ -1,6 +1,7 @@ #!/usr/bin/env python import os +import sys import os.path import shutil @@ -38,6 +39,5 @@ def load_module(modname): """Return the module `modname` (full name) if loaded, or try to import it. Returns the module or raises `ImportError`.""" if not sys.modules.has_key(modname): - moe.log.debug("Loading module %s" % (path, name)) __import__(modname) return sys.modules[modname] -- 2.39.2