From e767f26ccead2dd897de84456afb58b5b40b1501 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= <stanislaw.pitucha@hp.com>
Date: Mon, 7 Dec 2015 15:25:09 +1100
Subject: [PATCH] Fix multiline string with missing space

Change-Id: Ie59447b92f20cc4fb931ad8311f46bc1b1158abb
---
 novaclient/v2/shell.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py
index 5296084de..daed9560b 100644
--- a/novaclient/v2/shell.py
+++ b/novaclient/v2/shell.py
@@ -4017,7 +4017,7 @@ def do_ssh(cs, args):
             'network': args.network, 'address_type': address_type,
             'pretty_version': pretty_version, 'server': args.server})
     elif len(matching_addresses) > 1:
-        msg = _("More than one %(pretty_version)s %(address_type)s address"
+        msg = _("More than one %(pretty_version)s %(address_type)s address "
                 "found.")
         raise exceptions.CommandError(msg % {'pretty_version': pretty_version,
                                              'address_type': address_type})