diff options
author | Joey Hess <joey@kitenet.net> | 2011-02-11 15:49:59 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-02-11 15:49:59 -0400 |
commit | 735076c767f09c740e0c99201d341a12d7b7df2c (patch) | |
tree | 7b930c9dd6a2752a9a435536848eed7276e2b44b | |
parent | 5a50a7cf137997a9d940b9a89a0968452a1ac411 (diff) |
qualified import
-rw-r--r-- | Messages.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Messages.hs b/Messages.hs index 80b53e5cd..90857280a 100644 --- a/Messages.hs +++ b/Messages.hs @@ -15,7 +15,7 @@ import qualified Codec.Binary.UTF8.String as UTF8 import Types import qualified Annex -import SysConfig +import qualified SysConfig verbose :: Annex () -> Annex () verbose a = do @@ -63,4 +63,4 @@ indent s = join "\n" $ map (\l -> " " ++ l) $ lines s - platforms (eg, unix), FilePaths are internally stored in - non-decoded form. -} filePathToString :: FilePath -> String -filePathToString = if unicodefilepath then id else UTF8.decodeString +filePathToString = if SysConfig.unicodefilepath then id else UTF8.decodeString |