diff --git a/kivy/input/providers/mactouch.py b/kivy/input/providers/mactouch.py index fcc1315c1..dbd5e4080 100644 --- a/kivy/input/providers/mactouch.py +++ b/kivy/input/providers/mactouch.py @@ -131,10 +131,10 @@ class MacMotionEventProvider(MotionEventProvider): # ok, listing devices, and attach ! devices = MultitouchSupport.MTDeviceCreateList() num_devices = CFArrayGetCount(devices) - print 'num_devices =', num_devices + # print 'num_devices =', num_devices for i in xrange(num_devices): device = CFArrayGetValueAtIndex(devices, i) - print 'device #%d: %016x' % (i, device) + # print 'device #%d: %016x' % (i, device) # create touch dict for this device data_id = str(device) self.touches[data_id] = {}