diff options
author | Dan Davis <danizen@users.noreply.github.com> | 2019-02-13 13:59:44 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2019-02-13 13:59:44 -0500 |
commit | 2bd8df243ac6fc35e58c9fe90b20c9e42519a5ac (patch) | |
tree | 1f7507bfac4533ef651aa55a448e64f6ef94e19a /django/db/backends/postgresql/creation.py | |
parent | f63811f4813f0e0439e140a97eeba18a5017e858 (diff) | |
download | django-2bd8df243ac6fc35e58c9fe90b20c9e42519a5ac.tar.gz |
Fixed #30184 -- Removed ellipsis characters from shell output strings.
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654)
to avoid a crash when the user shell doesn't support non-ASCII characters.
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 b37766b834..09af818b1e 100644 --- a/django/db/backends/postgresql/creation.py +++ b/django/db/backends/postgresql/creation.py @@ -67,7 +67,7 @@ class DatabaseCreation(BaseDatabaseCreation): except Exception: 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) |