Skip to content

Commit db46666

Browse files
committed
Fix a bug about "openstack server list --user"
Fix the bug to get the right user id. Change-Id: Ie60a719a40654802772884ff94271b37aa061ac3 Closes-Bug: #1513701
1 parent 8a1fb85 commit db46666

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openstackclient/compute/v2/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ def take_action(self, parsed_args):
735735

736736
user_id = None
737737
if parsed_args.user:
738-
user_id = identity_common.find_project(
738+
user_id = identity_common.find_user(
739739
identity_client,
740740
parsed_args.user,
741741
parsed_args.user_domain,

0 commit comments

Comments
 (0)