Bläddra i källkod

Removed ugly print

Yentl Van Tendeloo 9 år sedan
förälder
incheckning
2eeb22ebe4
1 ändrade filer med 0 tillägg och 3 borttagningar
  1. 0 3
      interface/HUTN/hutn_compiler/constructors_object_visitor.py

+ 0 - 3
interface/HUTN/hutn_compiler/constructors_object_visitor.py

@@ -59,10 +59,7 @@ class ConstructorsObjectVisitor(ConstructorsVisitor):
         urllib2.urlopen(urllib2.Request("http://localhost:8001/", urllib.urlencode({"op": "set_input", "element_type": "V", "value": '"%s"' % self.hash_file, "username": self.username}))).read()
         urllib2.urlopen(urllib2.Request("http://localhost:8001/", urllib.urlencode({"op": "set_input", "element_type": "V", "value": 'true', "username": self.username}))).read() # Use new interface
 
-        print("Uploading!")
-
         def flush_data(data):
-            print("Send " + str(data))
             if data:
                 urllib2.urlopen(urllib2.Request("http://localhost:8001/", urllib.urlencode({"op": "set_input", "data": json.dumps(data), "username": self.username})), timeout=timeout).read()
             return []