diff options
author | Joey Hess <joey@kitenet.net> | 2013-11-22 12:21:37 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-11-22 12:21:37 -0400 |
commit | fe8c2254fff93b3cc988d3f3db95348714ff7bd4 (patch) | |
tree | 9f466120889d51e61235f95f38d2fd81ce82d651 | |
parent | 487c1265f4531c6ff67d79c4ac6c789e11ac3e94 (diff) |
fix standalone build of this module
-rw-r--r-- | Annex.hs | 2 | ||||
-rw-r--r-- | Annex/Exception.hs | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -{-# LANGUAGE GeneralizedNewtypeDeriving #-} +{-# LANGUAGE GeneralizedNewtypeDeriving, PackageImports #-} module Annex ( Annex, diff --git a/Annex/Exception.hs b/Annex/Exception.hs index aaa6811a5..91347583e 100644 --- a/Annex/Exception.hs +++ b/Annex/Exception.hs @@ -10,6 +10,8 @@ - Licensed under the GNU GPL version 3 or higher. -} +{-# LANGUAGE PackageImports #-} + module Annex.Exception ( bracketIO, tryAnnex, |