aboutsummaryrefslogtreecommitdiff
path: root/LocationLog.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-10-04 00:40:47 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-10-04 00:59:08 -0400
commitcfe21e85e7fba61ac588e210f2a9b75f8d081f42 (patch)
tree3237aa5460cb38254a44a6462c83db3c2276c229 /LocationLog.hs
parentff21fd4a652cc6516d0e06ab885adf1c93eddced (diff)
rename
Diffstat (limited to 'LocationLog.hs')
-rw-r--r--LocationLog.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/LocationLog.hs b/LocationLog.hs
index 759bee830..a633f2637 100644
--- a/LocationLog.hs
+++ b/LocationLog.hs
@@ -21,9 +21,9 @@ module LocationLog (
logFileKey
) where
-import AnnexCommon
+import Annex.Common
import qualified Git
-import qualified Branch
+import qualified Annex.Branch
import UUID
import PresenceLog
@@ -43,7 +43,7 @@ keyLocations = currentLog . logFile
{- Finds all keys that have location log information.
- (There may be duplicate keys in the list.) -}
loggedKeys :: Annex [Key]
-loggedKeys = mapMaybe (logFileKey . takeFileName) <$> Branch.files
+loggedKeys = mapMaybe (logFileKey . takeFileName) <$> Annex.Branch.files
{- The filename of the log file for a given key. -}
logFile :: Key -> String