From d7d0d35225219ea4232d58d875dd8710c473f989 Mon Sep 17 00:00:00 2001 From: Patrick Pelletier Date: Sun, 24 Mar 2019 15:54:57 -0700 Subject: [PATCH] Windows was unhappy about Unicode characters. --- Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.hs b/Main.hs index a81d2fd..71d8388 100644 --- a/Main.hs +++ b/Main.hs @@ -544,7 +544,7 @@ printVersion = do let pkg = "inty-midi " ++ showVersion version compiler = compilerName ++ " " ++ showVersion compilerVersion putStrLn $ pkg ++ " (built with " ++ compiler ++ ")" - putStrLn "© 2019 Patrick Pelletier, BSD 3-clause license" + putStrLn "(c) 2019 Patrick Pelletier, BSD 3-clause license" putStrLn "code@funwithsoftware.org" putStrLn "https://github.com/ppelleti/inty-midi"