mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-25 08:21:04 -06:00
Fixed Unicode character issue causing error on Python2 environment. Fixes #5279
This commit is contained in:
parent
26d0a3e5cb
commit
a7ba446703
@ -23,4 +23,5 @@ Bug fixes
|
||||
| `Issue #4608 <https://redmine.postgresql.org/issues/4608>`_ - Fixed some accessibility issues in the dialogs.
|
||||
| `Issue #4942 <https://redmine.postgresql.org/issues/4942>`_ - Fixed chrome driver download utility issue for Ubuntu.
|
||||
| `Issue #5143 <https://redmine.postgresql.org/issues/5143>`_ - Fix an accessibility issue to maximize the panel for all alertify dialog.
|
||||
| `Issue #5221 <https://redmine.postgresql.org/issues/5221>`_ - Improve logic to get the DDL statements as a part of the comparison.
|
||||
| `Issue #5221 <https://redmine.postgresql.org/issues/5221>`_ - Improve logic to get the DDL statements as a part of the comparison.
|
||||
| `Issue #5279 <https://redmine.postgresql.org/issues/5279>`_ - Fixed Unicode character issue causing error on Python2 environment.
|
@ -495,7 +495,7 @@ class PartitionsView(BaseTableView, DataTypeReader, VacuumSettings,
|
||||
partition_data['default_partition_header'] = \
|
||||
'-- Create a default partition to prevent the data loss.\n' \
|
||||
'-- It helps when none of the partitions of a relation\n' \
|
||||
'-- matches the inserted data.'
|
||||
'-- matches the inserted data.'
|
||||
|
||||
# Create temporary name for partitions
|
||||
for item in source_data['partitions']:
|
||||
|
@ -568,7 +568,7 @@ def check_version_compatibility(sid, tid):
|
||||
tar_manager = driver.connection_manager(tar_server.id)
|
||||
|
||||
if src_manager.server_type != tar_manager.server_type:
|
||||
return False, gettext('Schema diff does not support the comparison '
|
||||
return False, gettext('Schema diff does not support the comparison '
|
||||
'between Postgres Server and EDB Postgres '
|
||||
'Advanced Server.')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user