diff options
| author | Claude Paroz <claude@2xlibre.net> | 2018-08-22 15:13:58 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-08-22 09:13:58 -0400 |
| commit | 50b8493581fea3d7137dd8db33bac7008868d23a (patch) | |
| tree | 17e10260f66489ec5ecc60464e9fb94889c61aa2 /django/db/backends/postgresql/creation.py | |
| parent | 233c70f0479beb3bff9027e6cff680882978fd4d (diff) | |
Refs #29654 -- Replaced three dots with ellipsis character in output strings.
Diffstat (limited to 'django/db/backends/postgresql/creation.py')
| -rw-r--r-- | django/db/backends/postgresql/creation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/creation.py b/django/db/backends/postgresql/creation.py index 01e3b5d10a..d1e766421f 100644 --- a/django/db/backends/postgresql/creation.py +++ b/django/db/backends/postgresql/creation.py @@ -67,7 +67,7 @@ class DatabaseCreation(BaseDatabaseCreation): except Exception as e: try: if verbosity >= 1: - self.log('Destroying old test database for alias %s...' % ( + self.log('Destroying old test database for alias %s…' % ( self._get_database_display_str(verbosity, target_database_name), )) cursor.execute('DROP DATABASE %(dbname)s' % test_db_params) |
