summaryrefslogtreecommitdiff
path: root/LocationLog.hs
diff options
context:
space:
mode:
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