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
If you download a table with json data (postgresql), the CSV contains illegal json, all strings are prefixed with a u.
u
Example:
Content in database: {'test': 'json'} CSV export: {u'test': u'json'}
{'test': 'json'}
{u'test': u'json'}
The text was updated successfully, but these errors were encountered:
This is fixed in V9.
I duplicated it on our demo instance (V7) but could not recreate in the preview instance.
Sorry, something went wrong.
No branches or pull requests
If you download a table with json data (postgresql), the CSV contains illegal json, all strings are prefixed with a
u
.Example:
Content in database:
{'test': 'json'}
CSV export:
{u'test': u'json'}
Technical details:
The text was updated successfully, but these errors were encountered: