summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmy Marrich (spotz) <amy@demarco.com>2018-04-18 16:56:50 -0500
committerAmy Marrich (spotz) <amy@demarco.com>2018-04-18 16:59:28 -0500
commit75ad1515fe5c1a83ca99e7e0ad9e61cf025e419f (patch)
treea12452d64b516eb2ccae2ad4df4d6602aaa63d6f
parentba6f5dd73cd575a8476badb506715531414dcb59 (diff)
downloadpython-novaclient-75ad1515fe5c1a83ca99e7e0ad9e61cf025e419f.tar.gz
Correct typo in deprecation for floating-ip commands
This patch fixes a typo in the deprecation message for floating-ip-associate and floating-ip-disassociate. Change-Id: I3ed2f0962949d5c755b3f1f383dbfb879a4405a0 Closes-Bug: #1765192
-rw-r--r--novaclient/v2/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py
index 46b50abc..472a79ce 100644
--- a/novaclient/v2/shell.py
+++ b/novaclient/v2/shell.py
@@ -85,7 +85,7 @@ def emit_hosts_deprecation_warning(command_name, replacement=None):
def emit_fixed_floating_deprecation_warning(command_name):
print(_('WARNING: Command %s is deprecated and will be removed '
'in the first major release after the Nova server 16.0.0 '
- 'Pike release. Use python-neutronclient or python-openstackclient'
+ 'Pike release. Use python-neutronclient or python-openstackclient '
'instead. Specify --os-compute-api-version less than 2.44 '
'to continue using this command until it is removed.') %
command_name, file=sys.stderr)