summaryrefslogtreecommitdiff
path: root/Config.hs
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2012-12-13 00:46:10 -0400
committerJoey Hess <joey@kitenet.net>2012-12-13 00:46:10 -0400
commitffdd08fd2e7c2f3cdfde01bad36792294f8c535c (patch)
treeabb7793f9b20ce4a6e196fa291ed5c958e9712a5 /Config.hs
parentb080a58b7641027626a5768d4b417a7b8e6fbadd (diff)
parent0d50a6105b5f00f52bc644c359fe4ea31bf31077 (diff)
Merge branch 'master' into desymlink
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Config.hs b/Config.hs
index 0f948f5e55..248a169ade 100644
--- a/Config.hs
+++ b/Config.hs
@@ -27,7 +27,7 @@ setConfig (ConfigKey key) value = do
{- Unsets a git config setting. (Leaves it in state currently.) -}
unsetConfig :: ConfigKey -> Annex ()
unsetConfig (ConfigKey key) = inRepo $ Git.Command.run "config"
- [Param "--unset", Param key]
+ [Param "--unset", Param key]
{- Looks up a setting in git config. -}
getConfig :: ConfigKey -> String -> Annex String