mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
csv: update some parse errors which weren't in human format
cf https://www.reddit.com/r/plaintextaccounting/comments/axekse/hledger_how_to_create_curved_brackets_with_rule/
This commit is contained in:
parent
216dad990d
commit
c5df73910f
@ -690,7 +690,7 @@ transactionFromCsvRecord sourcepos rules record = t
|
||||
where
|
||||
statuserror err = error' $ unlines
|
||||
["error: could not parse \""++str++"\" as a cleared status (should be *, ! or empty)"
|
||||
,"the parse error is: "++show err
|
||||
,"the parse error is: "++customErrorBundlePretty err
|
||||
]
|
||||
code = maybe "" render $ mfieldtemplate "code"
|
||||
description = maybe "" render $ mfieldtemplate "description"
|
||||
@ -705,7 +705,7 @@ transactionFromCsvRecord sourcepos rules record = t
|
||||
,"the amount rule is: "++(fromMaybe "" $ mfieldtemplate "amount")
|
||||
,"the currency rule is: "++(fromMaybe "unspecified" $ mfieldtemplate "currency")
|
||||
,"the default-currency is: "++fromMaybe "unspecified" mdefaultcurrency
|
||||
,"the parse error is: "++show err
|
||||
,"the parse error is: "++customErrorBundlePretty err
|
||||
,"you may need to "
|
||||
++"change your amount or currency rules, "
|
||||
++"or "++maybe "add a" (const "change your") mskip++" skip rule"
|
||||
@ -734,7 +734,7 @@ transactionFromCsvRecord sourcepos rules record = t
|
||||
,"the balance rule is: "++(fromMaybe "" $ mfieldtemplate "balance")
|
||||
,"the currency rule is: "++(fromMaybe "unspecified" $ mfieldtemplate "currency")
|
||||
,"the default-currency is: "++fromMaybe "unspecified" mdefaultcurrency
|
||||
,"the parse error is: "++show err
|
||||
,"the parse error is: "++customErrorBundlePretty err
|
||||
]
|
||||
|
||||
-- build the transaction
|
||||
|
Loading…
Reference in New Issue
Block a user