aboutsummaryrefslogtreecommitdiff
path: root/Config.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-12-13 00:46:10 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-12-13 00:46:10 -0400
commit49a456e8be7fcfdf22554bd2c019da7f9d77ec5f (patch)
tree07d3e3ef1d83c374cdfaf6bbd76d7aeb05c5c29c /Config.hs
parentde6406afce6de0cf8a48bc2ecf9be1e7de93e40e (diff)
parent7db480af0f944ca0e6c062cd1243c63ad7f878d1 (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 0f948f5e5..248a169ad 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