summaryrefslogtreecommitdiff
path: root/Command/ConfigList.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/ConfigList.hs')
-rw-r--r--Command/ConfigList.hs6
1 files changed, 2 insertions, 4 deletions
diff --git a/Command/ConfigList.hs b/Command/ConfigList.hs
index 3de26c892..c38539fa0 100644
--- a/Command/ConfigList.hs
+++ b/Command/ConfigList.hs
@@ -7,9 +7,7 @@
module Command.ConfigList where
-import Control.Monad.State (liftIO)
-
-import Annex
+import AnnexCommon
import Command
import UUID
@@ -22,7 +20,7 @@ seek = [withNothing start]
start :: CommandStart
start = do
- g <- Annex.gitRepo
+ g <- gitRepo
u <- getUUID g
liftIO $ putStrLn $ "annex.uuid=" ++ u
stop