diff --git a/docs/en_US/release_notes_4_0.rst b/docs/en_US/release_notes_4_0.rst index 374912274..cf2024aba 100644 --- a/docs/en_US/release_notes_4_0.rst +++ b/docs/en_US/release_notes_4_0.rst @@ -38,4 +38,5 @@ Bug fixes | `Bug #3809 `_ - Ensure auto complete should works when first identifier in the FROM clause needs quoting. | `Bug #3810 `_ - Ensure auto complete should works for columns from a schema-qualified table. | `Bug #3821 `_ - Ensure identifiers are properly displayed in the plan viewer. -| `Bug #3830 `_ - Make the setup process more robust against aborted executions. \ No newline at end of file +| `Bug #3830 `_ - Make the setup process more robust against aborted executions. +| `Bug #3856 `_ - Fixed an issue while creating export job. \ No newline at end of file diff --git a/web/pgadmin/tools/import_export/__init__.py b/web/pgadmin/tools/import_export/__init__.py index 58d4c05bf..3a8746607 100644 --- a/web/pgadmin/tools/import_export/__init__.py +++ b/web/pgadmin/tools/import_export/__init__.py @@ -206,9 +206,7 @@ def create_import_export_job(sid): None """ if request.form: - # Convert ImmutableDict to dict - data = dict(request.form) - data = json.loads(data['data'][0], encoding='utf-8') + data = json.loads(request.form['data'], encoding='utf-8') else: data = json.loads(request.data, encoding='utf-8')