summaryrefslogtreecommitdiff
path: root/Command/Get.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-01-06 17:50:58 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-01-06 17:50:58 -0400
commitbc59da72501db1cfac69315798a7359037bb9002 (patch)
tree54e2a90339ad3d24dbc3d0599a580db63b25ed32 /Command/Get.hs
parente0d6010d3602bfa6a231642816d788d5bc1b6988 (diff)
Revert "simplify"
Diffstat (limited to 'Command/Get.hs')
-rw-r--r--Command/Get.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Get.hs b/Command/Get.hs
index c3a6630ce..4a50fe3fe 100644
--- a/Command/Get.hs
+++ b/Command/Get.hs
@@ -18,7 +18,7 @@ def = [withOptions [Command.Move.fromOption] $ command "get" paramPaths seek
"make content of annexed files available"]
seek :: [CommandSeek]
-seek = [withField "from" $ \from -> withNumCopies $ \n ->
+seek = [withField "from" id $ \from -> withNumCopies $ \n ->
whenAnnexed $ start from n]
start :: Maybe String -> Maybe Int -> FilePath -> (Key, Backend) -> CommandStart