Kaydet (Commit) 5311a36d authored tarafından Jon Dufresne's avatar Jon Dufresne Kaydeden (comit) Tim Graham

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

üst 90f3ef33
...@@ -206,7 +206,7 @@ class BaseDatabaseCreation: ...@@ -206,7 +206,7 @@ class BaseDatabaseCreation:
action = 'Cloning test database' action = 'Cloning test database'
if keepdb: if keepdb:
action = 'Using existing clone' action = 'Using existing clone'
self.log('%s for alias %s...' % ( self.log('%s for alias %s' % (
action, action,
self._get_database_display_str(verbosity, source_database_name), self._get_database_display_str(verbosity, source_database_name),
)) ))
...@@ -248,7 +248,7 @@ class BaseDatabaseCreation: ...@@ -248,7 +248,7 @@ class BaseDatabaseCreation:
action = 'Destroying' action = 'Destroying'
if keepdb: if keepdb:
action = 'Preserving' action = 'Preserving'
self.log('%s test database for alias %s...' % ( self.log('%s test database for alias %s' % (
action, action,
self._get_database_display_str(verbosity, test_database_name), self._get_database_display_str(verbosity, test_database_name),
)) ))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment