aboutsummaryrefslogtreecommitdiff
path: root/CmdLine.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 /CmdLine.hs
parentff21fd4a652cc6516d0e06ab885adf1c93eddced (diff)
rename
Diffstat (limited to 'CmdLine.hs')
-rw-r--r--CmdLine.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/CmdLine.hs b/CmdLine.hs
index 34adb2556..faf5222a2 100644
--- a/CmdLine.hs
+++ b/CmdLine.hs
@@ -14,11 +14,11 @@ module CmdLine (
import System.IO.Error (try)
import System.Console.GetOpt
-import AnnexCommon
+import Annex.Common
import qualified Annex
-import qualified AnnexQueue
+import qualified Annex.Queue
import qualified Git
-import Content
+import Annex.Content
import Command
import Options
import Init
@@ -81,7 +81,7 @@ tryRun = tryRun' 0
tryRun' :: Integer -> Annex.AnnexState -> [Annex Bool] -> IO ()
tryRun' errnum state (a:as) = do
result <- try $ Annex.run state $ do
- AnnexQueue.flushWhenFull
+ Annex.Queue.flushWhenFull
a
case result of
Left err -> do