Skip to content

Commit feaff79

Browse files
author
Alex Glikson
committed
Fixes the output of 'os-evacuate' command.
Change-Id: I5f02e66f316acdd10df42bec3f6628a8efe5fd97 Fixes: bug #1132790
1 parent 34c8a6b commit feaff79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

novaclient/v1_1/shell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2909,7 +2909,7 @@ def do_evacuate(cs, args):
29092909
"""Evacuate server from failed host to specified one."""
29102910
server = _find_server(cs, args.server)
29112911

2912-
res = server.evacuate(args.host, args.on_shared_storage, args.password)[0]
2912+
res = server.evacuate(args.host, args.on_shared_storage, args.password)[1]
29132913
if type(res) is dict:
29142914
utils.print_dict(res)
29152915

0 commit comments

Comments
 (0)