X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=t%2Fmoe%2Futil.py;h=d287ff864c1230709b3172d658af4e1f3f157297;hb=258204ca478a8e8c180931575e1cd0748f677e8c;hp=a2ef34e602b762df66ba5121dba066616b85ba4b;hpb=28e78d1db80bca9ae46fa0ef9a1161fb5f5ed787;p=moe.git 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]