From: Michael Orlitzky Date: Wed, 22 Jan 2014 22:43:53 +0000 (-0500) Subject: Change "imported" to "processed" in some output. X-Git-Tag: 0.0.2~5 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhtsn-import.git;a=commitdiff_plain;h=0105a698fb3ff86773d08471b7506c6af4d4d673 Change "imported" to "processed" in some output. --- diff --git a/src/Main.hs b/src/Main.hs index 663c51c..da27b12 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -219,8 +219,8 @@ main = do -- deleted. let result_pairs = zip (OC.xml_files opt_config) results let victims = [ p | (p, True) <- result_pairs ] - let imported_count = length victims - report_info $ "Imported " ++ (show imported_count) ++ " document(s) total." + let processed_count = length victims + report_info $ "Processed " ++ (show processed_count) ++ " document(s) total." when (remove cfg) $ mapM_ (kill True) victims where