diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-15 03:12:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-15 03:12:05 -0400 |
commit | e78475737636a5d1e0d0a36b475c300cc7bb56cc (patch) | |
tree | 1d88de569e951b66ff5321eefaec49ad4b33bf89 /Version.hs | |
parent | 9bb797c0eae3c9d2f119a734762a6d5fa7321a80 (diff) |
hlint tweaks
Did all sources except Remotes/* and Command/*
Diffstat (limited to 'Version.hs')
-rw-r--r-- | Version.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Version.hs b/Version.hs index 7e7a4c7ce..7e6910fbe 100644 --- a/Version.hs +++ b/Version.hs @@ -43,8 +43,7 @@ checkVersion :: Annex () checkVersion = getVersion >>= handle where handle Nothing = error "First run: git-annex init" - handle (Just v) = do - unless (v `elem` supportedVersions) $ do + handle (Just v) = unless (v `elem` supportedVersions) $ error $ "Repository version " ++ v ++ " is not supported. " ++ msg v |