We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unicode characters should be treated, for example, in configuration file, patternstoexclude was defined like:
patternstoexclude = ['caixa cataluña', 'caixa catalunya', 'catalunya caixa', 'cataluña caixa', 'caixa galicia', 'caixa rural galega', 'cataluña banc', 'caixa ontinyent', 'caixa geral', 'caixa popular', 'caixa economica federal']
and should be written
patternstoexclude = [u'caixa cataluña', u'caixa catalunya', u'catalunya caixa', u'cataluña caixa', u'caixa galicia', u'caixa rural galega', u'cataluña banc', u'caixa ontinyent', u'caixa geral', u'caixa popular', u'caixa economica federal']
The text was updated successfully, but these errors were encountered:
will fix this by changing eval by json.loads!
Sorry, something went wrong.
No branches or pull requests
Unicode characters should be treated, for example, in configuration file, patternstoexclude was defined like:
patternstoexclude = ['caixa cataluña', 'caixa catalunya', 'catalunya caixa', 'cataluña caixa', 'caixa galicia', 'caixa rural galega', 'cataluña banc', 'caixa ontinyent', 'caixa geral', 'caixa popular', 'caixa economica federal']
and should be written
patternstoexclude = [u'caixa cataluña', u'caixa catalunya', u'catalunya caixa', u'cataluña caixa', u'caixa galicia', u'caixa rural galega', u'cataluña banc', u'caixa ontinyent', u'caixa geral', u'caixa popular', u'caixa economica federal']
The text was updated successfully, but these errors were encountered: