summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Compile
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2011-11-15 19:46:02 +0000
committerkr.angelov <kr.angelov@gmail.com>2011-11-15 19:46:02 +0000
commit04fdb41927699a6536e2cf3603d55ebf2f4a137d (patch)
tree949c7ef1686b04b16fab7d952596aa75e65e0322 /src/compiler/GF/Compile
parenta2626e24dd9e468ee0c5ccd455e4a5f782d56522 (diff)
fix in the versioning of the .gfo files
Diffstat (limited to 'src/compiler/GF/Compile')
-rw-r--r--src/compiler/GF/Compile/ReadFiles.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/ReadFiles.hs b/src/compiler/GF/Compile/ReadFiles.hs
index a64bb2a06..276aa2975 100644
--- a/src/compiler/GF/Compile/ReadFiles.hs
+++ b/src/compiler/GF/Compile/ReadFiles.hs
@@ -115,7 +115,7 @@ getAllFiles opts ps env file = do
case mb_mo of
Just mo -> return (st,importsOfModule mo)
Nothing
- | isGFO file -> ioeErr $ Bad (file ++ " is compiled with different GF version and I cannot find the source file")
+ | isGFO file -> ioeErr $ Bad (file ++ " is compiled with different GF version and I can't find the source file")
| otherwise -> do s <- ioeIO $ BS.readFile file
case runP pModHeader s of
Left (Pn l c,msg) -> ioeBad (file ++ ":" ++ show l ++ ":" ++ show c ++ ": " ++ msg)