summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-11-28 16:31:20 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-11-28 16:31:20 -0400
commit52ec6e748d5ef8350e9788d0f19dc5c3d609ab86 (patch)
treebc3c7bcf08529d01379e795c9a0d765107e4b4d1
parent653ad35a9f728ed5b3e9b557cdfb15a19b4afe16 (diff)
do not need to use Git.relative here (it is a no-op in this case anyway)
-rw-r--r--LocationLog.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LocationLog.hs b/LocationLog.hs
index 7497d865b..6d52f4bdd 100644
--- a/LocationLog.hs
+++ b/LocationLog.hs
@@ -124,7 +124,7 @@ logNow s u = do
{- Returns the filename of the log file for a given key. -}
logFile :: Git.Repo -> Key -> String
logFile repo key =
- gitStateDir repo ++ Git.relative repo (keyFile key) ++ ".log"
+ gitStateDir repo ++ keyFile key ++ ".log"
{- Returns a list of repository UUIDs that, according to the log, have
- the value of a key. -}