The CSV importer that is provided puts together a regexp from the list of fields you provide. This regexp is run against the contents of the files it is scanning, in order to identify whether a particular importer should be able to process a file.
The regexp is built from the fields you provide, I think, for this importer, it's in the source code. You'll have to open up the source code to debug this, but I suspect your list of fields may not exactly match that from your files. (There ought to be better tools for debugging this, but because setting up the import config usually requires coding, people just override methods and put prints and debug it that way.) On Sun, Apr 8, 2018 at 4:46 PM, viq <[email protected]> wrote: > On Sunday, April 8, 2018 at 7:40:50 PM UTC+2, Martin Blais wrote: >> >> - bean-identity saw your file. >> - It didn't match any of the configured importers (there's no section >> printed underneath it, if it matches it would print the importer and >> deduced account name, date and to-be-renamed location) >> Something to do with your regexp, it probably still doesn't match the >> header of your file. >> > > Sorry, where does the regexp come from (since what I'm putting in the > "config file" doesn't look like regexp at all), and what is it to match and > where? > > -- > You received this message because you are subscribed to the Google Groups > "Beancount" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/beancount/f8b2a0cf-1357-4a4f-bf82-0ee2ce558ff2%40googlegroups.com > <https://groups.google.com/d/msgid/beancount/f8b2a0cf-1357-4a4f-bf82-0ee2ce558ff2%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beancount/CAK21%2BhPUPnuo%3DX1UArXb8tjYA%2Bkvvh_mcvOtneq3%3DhSpxUU%2BqQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
