From: Tomas Gavenciak Date: Sat, 18 Sep 2010 07:33:24 +0000 (+0200) Subject: Minor fix in util.py X-Git-Tag: python-dummy-working~15 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=56079ae097f72c9cc904894bc025688b569077fd;p=eval.git Minor fix in util.py --- 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]