diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-11 01:35:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-11 10:48:52 -0400 |
commit | f4dee5a48229d6e17c87b7346509bf37811367d5 (patch) | |
tree | 44ec976fed590223c00cf0725bb5d5e28305e592 /Locations.hs | |
parent | 82feaf7305d2e40155ffd8e80c5f3bf6c9a71bd6 (diff) |
more hlint
Diffstat (limited to 'Locations.hs')
-rw-r--r-- | Locations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Locations.hs b/Locations.hs index 553104d95..f1580bf24 100644 --- a/Locations.hs +++ b/Locations.hs @@ -330,7 +330,7 @@ preSanitizeKeyName = concatMap escape -- other characters. By itself, it is escaped to -- doubled form. | c == ',' = ",," - | otherwise = ',' : show(ord(c)) + | otherwise = ',' : show (ord c) {- Converts a key into a filename fragment without any directory. - |