Refs #29654 -- Replaced three dots with ellipsis in DB creation output strings.

This commit is contained in:
Jon Dufresne 2018-08-28 04:56:34 -07:00 committed by Tim Graham
parent 90f3ef332b
commit 5311a36da5
1 changed files with 2 additions and 2 deletions

View File

@ -206,7 +206,7 @@ class BaseDatabaseCreation:
action = 'Cloning test database'
if keepdb:
action = 'Using existing clone'
self.log('%s for alias %s...' % (
self.log('%s for alias %s' % (
action,
self._get_database_display_str(verbosity, source_database_name),
))
@ -248,7 +248,7 @@ class BaseDatabaseCreation:
action = 'Destroying'
if keepdb:
action = 'Preserving'
self.log('%s test database for alias %s...' % (
self.log('%s test database for alias %s' % (
action,
self._get_database_display_str(verbosity, test_database_name),
))