graphics/GraphicCommons.py
changeset 1742 92932cd370a4
parent 1741 dd94b9a68c61
child 1743 c3c3d1318130
--- a/graphics/GraphicCommons.py	Tue Aug 15 16:01:18 2017 +0300
+++ b/graphics/GraphicCommons.py	Tue Aug 15 16:48:49 2017 +0300
@@ -1377,7 +1377,7 @@
     def ConnectionAvailable(self, direction=None, exclude=True):
         wire_nums = len(self.Wires)
 
-        connector_free = (wire_nums<= 0)
+        connector_free = (wire_nums <= 0)
         connector_max_used = ((wire_nums > 0) and self.OneConnected)
         if (self.Parent.CurrentLanguage in ["SFC", "LD"]) and (self.Type == "BOOL"):
             connector_max_used = False;