Browse Source

Remove obnoxious print again

Yentl Van Tendeloo 8 years ago
parent
commit
f2d20a6f31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/modelverse_kernel/main.py

+ 1 - 1
kernel/modelverse_kernel/main.py

@@ -66,7 +66,7 @@ class ModelverseKernel(object):
             elif inst_v is None:
                 raise Exception("%s: error understanding command (%s, %s)" % (self.debug_info, inst_v, phase_v))
             else:
-                print("%-30s(%s) -- %s" % (inst_v["value"], phase_v, username))
+                #print("%-30s(%s) -- %s" % (inst_v["value"], phase_v, username))
                 gen = getattr(self, "%s_%s" % (inst_v["value"], phase_v))(user_root)
         elif inst_v is None:
             raise Exception("%s: error understanding command (%s, %s)" % (self.debug_info, inst_v, phase_v))