diff --git a/hleap.cabal b/hleap.cabal
--- a/hleap.cabal
+++ b/hleap.cabal
@@ -1,5 +1,5 @@
 name:                hleap
-version:             0.1.2.5
+version:             0.1.2.6
 synopsis:            Web Socket interface to Leap Motion controller
 description:         This Haskell package contains functions for interfacing with Leap Motion controllers, \<<https://www.leapmotion.com/product/desktop>\>.  It is based on the WebSocket API \<<https://developer.leapmotion.com/documentation/javascript/supplements/Leap_JSON.html>\> and inspired by \<<https://bitbucket.org/turion/jedinight/>\>.
 
@@ -14,7 +14,7 @@
 stability:           Stable
 homepage:            https://bitbucket.org/bwbush/hleap
 bug-reports:         https://bwbush.atlassian.net/projects/HLEAP/issues/
-package-url:         https://bitbucket.org/bwbush/hleap/downloads/hleap-0.1.2.5.tar.gz
+package-url:         https://bitbucket.org/bwbush/hleap/downloads/hleap-0.1.2.6.tar.gz
 author:              Brian W Bush
 maintainer:          b.w.bush@acm.org
 
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -44,7 +44,7 @@
 -- | Handle pointable events.
 handlePointable :: Show a => Pointable a -> IO ()
 handlePointable Finger{..}           = putStrLn $ "FINGER\t " ++ show (side hand) ++ "\t" ++ show finger ++ "\t" ++ show stabilizedTipPosition
-handlePointable Tool{..}             = putStrLn $ "TOOL\t " ++ show (side hand) ++ "\t" ++ show stabilizedTipPosition
+handlePointable Tool{..}             = putStrLn $ "TOOL\t " ++ show stabilizedTipPosition
 handlePointable PointableReference{} = return ()
 
 
