summaryrefslogtreecommitdiff
path: root/Command/Fix.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Fix.hs')
-rw-r--r--Command/Fix.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Command/Fix.hs b/Command/Fix.hs
index a66a1c44a..44e36009b 100644
--- a/Command/Fix.hs
+++ b/Command/Fix.hs
@@ -7,10 +7,10 @@
module Command.Fix where
-import AnnexCommon
+import Annex.Common
import Command
-import qualified AnnexQueue
-import Content
+import qualified Annex.Queue
+import Annex.Content
command :: [Command]
command = [repoCommand "fix" paramPaths seek
@@ -39,5 +39,5 @@ perform file link = do
cleanup :: FilePath -> CommandCleanup
cleanup file = do
- AnnexQueue.add "add" [Param "--"] [file]
+ Annex.Queue.add "add" [Param "--"] [file]
return True