diff --git a/src/Propellor/Property/Postfix.hs b/src/Propellor/Property/Postfix.hs index 1cfc64d..3b35eee 100644 --- a/src/Propellor/Property/Postfix.hs +++ b/src/Propellor/Property/Postfix.hs @@ -62,7 +62,7 @@ dedupCf ls = let (k, v) = separate (== '=') l in Right ((filter (not . isSpace) k), v) | otherwise = Left l - fmt k v = k ++ "=" ++ v + fmt k v = k ++ " =" ++ v keycounts = M.fromListWith (+) . map (\(k, _v) -> (k, (1 :: Integer)))