]> mj.ucw.cz Git - eval.git/commitdiff
Minor fix in util.py
authorTomas Gavenciak <gavento@ucw.cz>
Sat, 18 Sep 2010 07:33:24 +0000 (09:33 +0200)
committerTomas Gavenciak <gavento@ucw.cz>
Sat, 18 Sep 2010 07:33:24 +0000 (09:33 +0200)
t/moe/util.py

index a2ef34e602b762df66ba5121dba066616b85ba4b..d287ff864c1230709b3172d658af4e1f3f157297 100644 (file)
@@ -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]