Remove extra space in exception

Invalid console type exception has an extra space at the end of the
message.

Change-Id: Ie410ecce487a56c6a88f6e236bfacc28ac693595
This commit is contained in:
Chris Behrens 2012-11-20 20:24:07 +00:00
parent d468507833
commit 20b52b92d2

View File

@ -732,7 +732,7 @@ class ConsoleNotFoundInPoolForInstance(ConsoleNotFound):
class ConsoleTypeInvalid(Invalid):
message = _("Invalid console type %(console_type)s ")
message = _("Invalid console type %(console_type)s")
class InstanceTypeNotFound(NotFound):