Fix UnableToFailOver exception message

This patch fixed the message in UnableToFailOver exception that is
missing a white space between the colon and the reason for the failure.

Trivialfix

Change-Id: Icee47ad5fa8f567da36dfb028b00903829d160e3
This commit is contained in:
Gorka Eguileor
2016-11-23 15:59:28 +01:00
parent 808862bf37
commit 84450e9eb3

View File

@@ -829,8 +829,7 @@ class InvalidReplicationTarget(Invalid):
class UnableToFailOver(CinderException):
message = _("Unable to failover to replication target:"
"%(reason)s).")
message = _("Unable to failover to replication target: %(reason)s).")
class ReplicationError(CinderException):