diff options
Diffstat (limited to 'Command/Vicfg.hs')
-rw-r--r-- | Command/Vicfg.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Vicfg.hs b/Command/Vicfg.hs index 178efec3a..0466c0c31 100644 --- a/Command/Vicfg.hs +++ b/Command/Vicfg.hs @@ -125,7 +125,7 @@ genCfg cfg descs = unlines $ concat [intro, trust, groups, preferredcontent] ] line setting u value = - [ com $ "(" ++ (fromMaybe "" $ M.lookup u descs) ++ ")" + [ com $ "(for " ++ (fromMaybe "" $ M.lookup u descs) ++ ")" , unwords [setting, fromUUID u, "=", value] ] lcom = map (\l -> if "#" `isPrefixOf` l then l else "#" ++ l) |