diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-12-12 15:26:28 +0100 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-12-12 15:26:28 +0100 |
commit | fd80a539306d367ab8b228b30a024328cbd88f22 (patch) | |
tree | 49c560de6251d6920f27910698e8494363c5855c /ymir/mlmmj-expose.hs | |
parent | 7ff8e88f35ea789a86a134dba790af3ac3693a12 (diff) | |
download | nixos-fd80a539306d367ab8b228b30a024328cbd88f22.tar nixos-fd80a539306d367ab8b228b30a024328cbd88f22.tar.gz nixos-fd80a539306d367ab8b228b30a024328cbd88f22.tar.bz2 nixos-fd80a539306d367ab8b228b30a024328cbd88f22.tar.xz nixos-fd80a539306d367ab8b228b30a024328cbd88f22.zip |
Bytestring flavours
Diffstat (limited to 'ymir/mlmmj-expose.hs')
-rw-r--r-- | ymir/mlmmj-expose.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ymir/mlmmj-expose.hs b/ymir/mlmmj-expose.hs index 6747ebc5..2819462e 100644 --- a/ymir/mlmmj-expose.hs +++ b/ymir/mlmmj-expose.hs | |||
@@ -151,7 +151,7 @@ main = do | |||
151 | let | 151 | let |
152 | listName = takeBaseName listDir | 152 | listName = takeBaseName listDir |
153 | replaceGroup ident = FoxReplaceGroup { groupName = ident ++ "." ++ listName | 153 | replaceGroup ident = FoxReplaceGroup { groupName = ident ++ "." ++ listName |
154 | , groupHtmlMode = False | 154 | , groupHtmlMode = NoHTML |
155 | , groupUrls = Set.empty | 155 | , groupUrls = Set.empty |
156 | , groupSubs = Set.fromList $ map (replaceSub ident) subscribers | 156 | , groupSubs = Set.fromList $ map (replaceSub ident) subscribers |
157 | } | 157 | } |
@@ -161,7 +161,8 @@ main = do | |||
161 | , rCaseSensitive = True | 161 | , rCaseSensitive = True |
162 | } | 162 | } |
163 | 163 | ||
164 | CBS.putStrLn . encodePretty . FoxReplace . Set.fromList $ map replaceGroup identities | 164 | LBS.putStr . encodePretty . FoxReplace . Set.fromList $ map replaceGroup identities |
165 | putChar '\n' | ||
165 | _ -> hPutStrLn stderr "Called without expected arguments (<listDirectory>)" >> exitWith (ExitFailure 2) | 166 | _ -> hPutStrLn stderr "Called without expected arguments (<listDirectory>)" >> exitWith (ExitFailure 2) |
166 | _ -> hPutStrLn stderr ("Called under unsupported name ‘" ++ progName ++ "’") >> exitWith (ExitFailure 2) | 167 | _ -> hPutStrLn stderr ("Called under unsupported name ‘" ++ progName ++ "’") >> exitWith (ExitFailure 2) |
167 | 168 | ||