From 60d382a840d0ed020b3b42fbd08f5724b5746fec Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 6 Oct 2015 15:26:42 -0400 Subject: [PATCH] avoid using print action, which is reserved for debugging --- Command/NumCopies.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/NumCopies.hs b/Command/NumCopies.hs index 1a3dd3dad6..5675d31610 100644 --- a/Command/NumCopies.hs +++ b/Command/NumCopies.hs @@ -39,7 +39,7 @@ startGet = next $ next $ do Annex.setOutput QuietOutput v <- getGlobalNumCopies case v of - Just n -> liftIO $ print $ fromNumCopies n + Just n -> liftIO $ putStrLn $ show $ fromNumCopies n Nothing -> do liftIO $ putStrLn "global numcopies is not set" old <- deprecatedNumCopies