graphics/GraphicCommons.py
changeset 1120 35d772ec1a76
parent 1102 cd4a996ddaa7
child 1166 2ed9675be08d
--- a/graphics/GraphicCommons.py	Fri May 10 13:07:41 2013 +0200
+++ b/graphics/GraphicCommons.py	Fri May 10 13:15:18 2013 +0200
@@ -2047,7 +2047,6 @@
     def Clone(self, parent, connectors = {}, dx = 0, dy = 0):
         start_connector = connectors.get(self.StartConnected, None)
         end_connector = connectors.get(self.EndConnected, None)
-        print self.StartConnected, "=>", start_connector, ",", self.EndConnected, "=>", end_connector
         if start_connector is not None and end_connector is not None:
             wire = Wire(parent)
             wire.SetPoints([(point.x + dx, point.y + dy) for point in self.Points])