Fix old-style import
authorIustin Pop <iustin@google.com>
Wed, 27 Jun 2012 19:12:38 +0000 (12:12 -0700)
committerIustin Pop <iustin@google.com>
Thu, 28 Jun 2012 00:24:05 +0000 (17:24 -0700)
Commit 1213f9d6 (re)added an old-style import, which fails with recent
compilers.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>

htools/Ganeti/HTools/Program/Hcheck.hs

index faf5e6d..18fafc7 100644 (file)
@@ -26,7 +26,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 module Ganeti.HTools.Program.Hcheck (main, options) where
 
 import Control.Monad
-import List (transpose)
+import Data.List (transpose)
 import System.Exit
 import System.IO
 import Text.Printf (printf)